Guest User

Untitled

a guest
Jan 9th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. pandoc input.html -s --latexmathml -o output.html
  2.  
  3. $ echo '<p>$$x = 4$$</p>' | pandoc -f html+tex_math_dollars -t html --mathml
  4. <p>
  5. <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
  6. <semantics>
  7. <mrow><mi>x</mi><mo>=</mo><mn>4</mn></mrow><annotation encoding="application/x-tex">x = 4</annotation>
  8. </semantics>
  9. </math>
  10. </p>
Add Comment
Please, Sign In to add comment