We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdae585 commit 926c3cdCopy full SHA for 926c3cd
filter/parse-html.lua
@@ -5,4 +5,10 @@ function RawBlock (raw)
5
and pandoc.read(raw.text, 'html').blocks
6
or raw
7
end
8
+
9
+function RawInline (raw)
10
+ return raw.format:match 'html'
11
+ and pandoc.RawInline(raw.text, 'html')
12
+ or raw
13
+ end
14
sample1.md
@@ -73,6 +73,10 @@ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
73
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
74
culpa qui officia deserunt mollit anim id est laborum.
75
76
+00 01 02 03 04<sub>16</sub>
77
78
+a<sup>n</sup> + b<sup>n</sup> = c<sup>n</sup>
79
80
## Figures
81
82
### Computer
0 commit comments