diff options
-rw-r--r-- | data/pandoc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/pandoc.lua b/data/pandoc.lua index 32e593c22..b2e8f9edb 100644 --- a/data/pandoc.lua +++ b/data/pandoc.lua @@ -424,7 +424,7 @@ M.Image = M.Inline:create_constructor( attr = attr or M.Attr() return {c = {attr, caption, {src, title}}} end, - {"attributes", "caption", {"src", "title"}} + {{"identifier", "classes", "attributes"}, "caption", {"src", "title"}} ) --- Create a LineBreak inline element @@ -449,7 +449,7 @@ M.Link = M.Inline:create_constructor( attr = attr or M.Attr() return {c = {attr, content, {target, title}}} end, - {"attributes", "content", {"target", "title"}} + {{"identifier", "classes", "attributes"}, "content", {"target", "title"}} ) --- Creates a Math element, either inline or displayed. |