Skip to content

Commit

Permalink
chore: Update rockspecs for 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Omikhleia authored and Didier Willis committed Dec 14, 2024
1 parent b8abad1 commit ef83934
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/sile-and-djot.dj
Original file line number Diff line number Diff line change
Expand Up @@ -526,15 +526,15 @@ This implementation, however, recognizes a simplified subset of the Pandoc citat
:::
```
I wrote a whole book on mathematics with SILE [@sile:willis2024].
... in a "master document" [@sile:willis2021, part 1].
... a "master document" [@sile:willis2021, part 1].
... _The SILE Book_ for more information [@sile, chapter 5].
```
:::

I wrote whole book on mathematics with SILE [@sile:willis2024].

How to load bibliographies and configure citation styles is beyond the scope of this manual.
If you are using the resilient collection, the most natural way to do this in a "master document" [@sile:willis2021, part 1].
If you are using the resilient collection, the most natural way to do this is a "master document" [@sile:willis2021, part 1].
Note that support for biblibraphies in SILE is an experimental feature, so you may also want to check _The SILE Book_ for more information [@sile, chapter 5].

{#djot-symbols}
Expand Down
4 changes: 2 additions & 2 deletions examples/sile-and-markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -514,15 +514,15 @@ This implementation recognizes a simplified subset of the Pandoc citation syntax
::: {custom-style=CodeBlock}
```
I wrote a whole book on mathematics with SILE [@sile:willis2024].
... in a "master document" [@sile:willis2021, part 1].
... a "master document" [@sile:willis2021, part 1].
... _The SILE Book_ for more information [@sile, chapter 5].
```
:::

I wrote whole book on mathematics with SILE [@sile:willis2024].

How to load bibliographies and configure citation styles is beyond the scope of this manual.
If you are using the resilient collection, the most natural way to do this in a "master document" [@sile:willis2021, part 1].
If you are using the resilient collection, the most natural way to do this is a "master document" [@sile:willis2021, part 1].
Note that support for biblibraphies in SILE is an experimental feature, so you may also want to check _The SILE Book_ for more information [@sile, chapter 5].

### Symbols
Expand Down
62 changes: 62 additions & 0 deletions rockspecs/markdown.sile-2.3.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
rockspec_format = "3.0"
package = "markdown.sile"
version = "2.3.0-1"
source = {
url = "git+https://github.com/Omikhleia/markdown.sile.git",
tag = "v2.3.0",
}
description = {
summary = "Native Markdown support for the SILE typesetting system.",
detailed = [[
This package set for the SILE typesetting system provides a complete redesign
of the native Markdown support for SILE, with a great set of Pandoc-like
extensions and plenty of extra goodies.
]],
homepage = "https://github.com/Omikhleia/markdown.sile",
license = "MIT",
}
dependencies = {
"lua >= 5.1",
"embedders.sile >= 0.2.0",
"labelrefs.sile >= 0.1.0",
"ptable.sile >= 3.1.0",
"smartquotes.sile >= 1.0.0",
"textsubsuper.sile >= 1.2.0",
"silex.sile >= 0.6.0, < 1.0",
"lunajson",
}

build = {
type = "builtin",
modules = {
["sile.classes.markdown"] = "classes/markdown.lua",
["sile.inputters.markdown"] = "inputters/markdown.lua",
["sile.inputters.pandocast"] = "inputters/pandocast.lua",
["sile.inputters.djot"] = "inputters/djot.lua",
["sile.packages.markdown"] = "packages/markdown/init.lua",
["sile.packages.markdown.cmbase"] = "packages/markdown/cmbase.lua",
["sile.packages.markdown.commands"] = "packages/markdown/commands.lua",
["sile.packages.markdown.utils"] = "packages/markdown/utils.lua",
["sile.packages.pandocast"] = "packages/pandocast/init.lua",
["sile.packages.djot"] = "packages/djot/init.lua",

["sile.lunamark"] = "lua-libraries/lunamark.lua",
["sile.lunamark.entities"] = "lua-libraries/lunamark/entities.lua",
["sile.lunamark.reader"] = "lua-libraries/lunamark/reader.lua",
["sile.lunamark.reader.markdown"] = "lua-libraries/lunamark/reader/markdown.lua",
["sile.lunamark.util"] = "lua-libraries/lunamark/util.lua",
["sile.lunamark.writer"] = "lua-libraries/lunamark/writer.lua",
["sile.lunamark.writer.generic"] = "lua-libraries/lunamark/writer/generic.lua",
["sile.lunamark.writer.html"] = "lua-libraries/lunamark/writer/html.lua",
["sile.lunamark.writer.html5"] = "lua-libraries/lunamark/writer/html5.lua",

["sile.djot"] = "lua-libraries/djot.lua",
["sile.djot.attributes"] = "lua-libraries/djot/attributes.lua",
["sile.djot.json"] = "lua-libraries/djot/json.lua",
["sile.djot.block"] = "lua-libraries/djot/block.lua",
["sile.djot.inline"] = "lua-libraries/djot/inline.lua",
["sile.djot.html"] = "lua-libraries/djot/html.lua",
["sile.djot.ast"] = "lua-libraries/djot/ast.lua",
["sile.djot.filter"] = "lua-libraries/djot/filter.lua",
}
}

0 comments on commit ef83934

Please sign in to comment.