diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.md | 6 | ||||
-rw-r--r-- | doc/using-the-pandoc-api.md | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/doc/filters.md b/doc/filters.md index 0c9b77328..f4c14c009 100644 --- a/doc/filters.md +++ b/doc/filters.md @@ -313,8 +313,10 @@ For a more Pythonic alternative to pandocfilters, see the [panflute](http://scorreia.com/software/panflute/) library. Don't like Python? There are also ports of pandocfilters in [PHP](https://github.com/vinai/pandocfilters-php), -[perl](https://metacpan.org/pod/Pandoc::Filter), and -[javascript/node.js](https://github.com/mvhenderson/pandoc-filter-node).] +[perl](https://metacpan.org/pod/Pandoc::Filter), +[javascript/node.js](https://github.com/mvhenderson/pandoc-filter-node), +[Groovy](https://github.com/dfrommi/groovy-pandoc), and +[Ruby](https://heerdebeer.org/Software/markdown/paru/). Starting with pandoc 2.0, pandoc includes built-in support for writing filters in lua. The lua interpreter is built in to diff --git a/doc/using-the-pandoc-api.md b/doc/using-the-pandoc-api.md index 8eb34d091..a09cc81aa 100644 --- a/doc/using-the-pandoc-api.md +++ b/doc/using-the-pandoc-api.md @@ -21,7 +21,7 @@ Pictorially: [input format] ==reader==> [Pandoc AST] ==writer==> [output format] ``` -This architecture allows pandoc to perform $M \times n$ +This architecture allows pandoc to perform $M \times N$ conversions with $M$ readers and $N$ writers. The Pandoc AST is defined in the |