mathjax / MathJax-node

MathJax for Node
Apache License 2.0
614 stars 96 forks source link

loading SVG file through img element #430

Open gbala2412 opened 5 years ago

gbala2412 commented 5 years ago

I have to load the SVG file created by Mathjax-Node through img element. In such a case is there any option to increase/decrease the font-size?

pkra commented 5 years ago

You would need to extract and copy the top-level style attribute over to the img tag to get a decent rendering.

Beware that using an img tag has many drawbacks (e.g., no CSS inheritance, worse rendering of fallback fonts).

gbala2412 commented 5 years ago

Thanks for the reply, I will try your suggestion.