forked from jgm/lunamark
-
Notifications
You must be signed in to change notification settings - Fork 36
handling inline html #597
Copy link
Copy link
Open
Labels
commonmarkRelated to making the syntax of markdown follow the CommonMark specRelated to making the syntax of markdown follow the CommonMark specfeature requesthtmlRelated to our support for HTML content.Related to our support for HTML content.luaRelated to the Lua interface and implementationRelated to the Lua interface and implementationquestion
Description
Activity
Metadata
Metadata
Assignees
Labels
commonmarkRelated to making the syntax of markdown follow the CommonMark specRelated to making the syntax of markdown follow the CommonMark specfeature requesthtmlRelated to our support for HTML content.Related to our support for HTML content.luaRelated to the Lua interface and implementationRelated to the Lua interface and implementationquestion
I have a markdown file which contains
x<sub>2</sub>to set x2.How is one supposed to define a renderer for this? The
inlineHtmlTagonly gets one argument, the html tag, and I see no way to get at the content between both tags to put braces around the argument?As I have only one number I tried to cheat and let the begin tag grab the argument. That actually worked in a small example, but fails in the real document as
relativeReferencesdisables the html processing ;-(