diff options
| author | Albert Krewinkel <[email protected]> | 2022-12-20 13:03:13 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2022-12-20 13:39:16 -0800 |
| commit | 1328e57f088d9f4dab230cd608c5945c605efb3c (patch) | |
| tree | d4974bac1cbcf8d243098916eb946af1d15eae8c /pandoc-lua-engine/src | |
| parent | c954dfab59fd1d93a838e4023c9f365280e63b30 (diff) | |
Shared: use LineBreak as default block sep in blocksToInlines
This change also affects the `pandoc.utils.blocks_to_inlines` Lua
function.
Closes: #8499
Diffstat (limited to 'pandoc-lua-engine/src')
| -rw-r--r-- | pandoc-lua-engine/src/Text/Pandoc/Lua/Module/Utils.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pandoc-lua-engine/src/Text/Pandoc/Lua/Module/Utils.hs b/pandoc-lua-engine/src/Text/Pandoc/Lua/Module/Utils.hs index 16305b76e..96d991de5 100644 --- a/pandoc-lua-engine/src/Text/Pandoc/Lua/Module/Utils.hs +++ b/pandoc-lua-engine/src/Text/Pandoc/Lua/Module/Utils.hs @@ -56,7 +56,7 @@ documentedModule = Module return $ B.toList (Shared.blocksToInlinesWithSep sep blks)) <#> parameter (peekList peekBlock) "list of blocks" "blocks" "" - <#> opt (parameter (peekList peekInline) "list of inlines" "inline" "") + <#> opt (parameter (peekList peekInline) "Inlines" "sep" "") =#> functionResult pushInlines "list of inlines" "" , defun "citeproc" |
