mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
Textile writer: fix closing tag for math output
Opening and closing tag for math output match now.
This commit is contained in:
@@ -428,7 +428,7 @@ inlineToTextile _ (Code _ str) =
|
||||
inlineToTextile _ (Str str) = return $ escapeStringForTextile str
|
||||
|
||||
inlineToTextile _ (Math _ str) =
|
||||
return $ "<span class=\"math\">" ++ escapeStringForXML str ++ "</math>"
|
||||
return $ "<span class=\"math\">" ++ escapeStringForXML str ++ "</span>"
|
||||
|
||||
inlineToTextile opts il@(RawInline f str)
|
||||
| f == Format "html" || f == Format "textile" = return str
|
||||
|
||||
+7
-7
@@ -523,13 +523,13 @@ Ellipses...and...and....
|
||||
h1(#latex). LaTeX
|
||||
|
||||
*
|
||||
* <span class="math">2+2=4</math>
|
||||
* <span class="math">x \in y</math>
|
||||
* <span class="math">\alpha \wedge \omega</math>
|
||||
* <span class="math">223</math>
|
||||
* <span class="math">p</math>-Tree
|
||||
* Here's some display math: <span class="math">\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}</math>
|
||||
* Here's one that has a line break in it: <span class="math">\alpha + \omega \times x^2</math>.
|
||||
* <span class="math">2+2=4</span>
|
||||
* <span class="math">x \in y</span>
|
||||
* <span class="math">\alpha \wedge \omega</span>
|
||||
* <span class="math">223</span>
|
||||
* <span class="math">p</span>-Tree
|
||||
* Here's some display math: <span class="math">\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}</span>
|
||||
* Here's one that has a line break in it: <span class="math">\alpha + \omega \times x^2</span>.
|
||||
|
||||
These shouldn't be math:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user