# VSCode Markdown-pdf Tips
## VSCode Markdown-pdf cannot generate Mermaid diagram
Change Mermaid server to: `https://unpkg.com/mermaid@9.4.3/dist/mermaid.min.js`
## Render Latex math
Just add these 2 lines at the bottom of the file, and it should be able to export to pdf.
```javascript!
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: {inlineMath: [['$', '$']]}, messageStyle: "none" });</script>
```