blob: 070687345d59cb22841a808032152b940863519c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
```
% pandoc -f html -t native
My <script type="math/tex">\mathcal{D}</script>
^D
[Plain [Str "My",Space,Math InlineMath "\\mathcal{D}"]]
```
```
% pandoc -f html -t native
<script type="math/tex; mode=display">\mathcal{D}</script>
^D
[Plain [Math DisplayMath "\\mathcal{D}"]]
```
|