I need to place latex formulas in list. With mardown:
<ol>
<li> $x_1$ </li>
<li> $x_2$ </li>
</ol>
I get:
As you can see latex is not applyed. How to fix it or what are the alternative ways to realise list with latex formulas?
CodePudding user response:
Visual Studio Code seems to render this just fine if you use Markdown syntax for your list instead of HTML:
1. $x_1$
1. $x_2$