diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua-filters.md | 2 | ||||
-rw-r--r-- | doc/using-the-pandoc-api.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md index 170aaa8f5..881c981f5 100644 --- a/doc/lua-filters.md +++ b/doc/lua-filters.md @@ -114,7 +114,7 @@ The return of a filter function must one of the following: - a pandoc object: this must be of the same type as the input and will replace the original object. - a list of pandoc objects: these will replace the original - object; the list is merged with the neighbors of the orignal + object; the list is merged with the neighbors of the original objects (spliced into the list the original object belongs to); returning an empty list deletes the object. diff --git a/doc/using-the-pandoc-api.md b/doc/using-the-pandoc-api.md index 8527f6373..550b38c65 100644 --- a/doc/using-the-pandoc-api.md +++ b/doc/using-the-pandoc-api.md @@ -42,7 +42,7 @@ limitation is mostly a help rather than a hindrance, since many of the formats pandoc supports have similar limitations. The best way to explore the pandoc AST is to use `pandoc -t -native`, which will display the AST correspoding to some +native`, which will display the AST corresponding to some Markdown input: ``` @@ -187,7 +187,7 @@ Some particularly important options to know about: # Builder Sometimes it's useful to construct a Pandoc document -programatically. To make this easier we provide the +programmatically. To make this easier we provide the module [Text.Pandoc.Builder] `pandoc-types`. Because concatenating lists is slow, we use special |