Lua: fix pandoc.utils.stringify
regression
The `pandoc.utils.stringify` function returned empty strings when called with a string argument.
This commit is contained in:
parent
2910f9f3f8
commit
b990ca3c4c
1 changed files with 1 additions and 1 deletions
|
@ -185,10 +185,10 @@ peekAstElement = retrieving "pandoc AST element" . choice
|
|||
[ (fmap PandocElement . peekPandoc)
|
||||
, (fmap InlineElement . peekInline)
|
||||
, (fmap BlockElement . peekBlock)
|
||||
, (fmap MetaValueElement . peekMetaValue)
|
||||
, (fmap AttrElement . peekAttr)
|
||||
, (fmap ListAttributesElement . peekListAttributes)
|
||||
, (fmap MetaElement . peekMeta)
|
||||
, (fmap MetaValueElement . peekMetaValue)
|
||||
]
|
||||
|
||||
-- | Converts an old/simple table into a normal table block element.
|
||||
|
|
Loading…
Add table
Reference in a new issue