2017-02-06 23:33:23 +01:00
|
|
|
```
|
|
|
|
% pandoc -f latex+raw_tex -t markdown
|
|
|
|
\emph{Hi \foo{there}}
|
|
|
|
^D
|
2019-07-19 07:30:05 +02:00
|
|
|
*Hi `\foo{there}`{=latex}*
|
2017-02-06 23:33:23 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f latex -t markdown
|
|
|
|
\emph{Hi \foo{there}}
|
|
|
|
^D
|
|
|
|
*Hi*
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f html+raw_html -t markdown
|
|
|
|
<em>Hi <blink>there</blink></em>
|
|
|
|
^D
|
2019-07-19 07:30:05 +02:00
|
|
|
*Hi `<blink>`{=html}there`</blink>`{=html}*
|
2017-02-06 23:33:23 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f html -t markdown
|
|
|
|
<em>Hi <blink>there</blink></em>
|
|
|
|
^D
|
|
|
|
*Hi there*
|
|
|
|
```
|