5a6399d9f6
See #6259.
31 lines
768 B
Markdown
31 lines
768 B
Markdown
```
|
|
% pandoc -f opml -t markdown
|
|
<?xml version="1.0"?> <opml version="1.0"> <head> <title> test </title> </head> <body> <outline text="test"> <outline text="try" _note="Here is inline html:

<div> 
<balise>
bla bla
</div>"/> </outline> </body> </opml>
|
|
^D
|
|
# test
|
|
|
|
## try
|
|
|
|
Here is inline html:
|
|
|
|
<div>
|
|
|
|
`<balise>`{=html} bla bla
|
|
|
|
</div>
|
|
|
|
```
|
|
|
|
```
|
|
% pandoc -f opml-raw_html-native_divs -t markdown
|
|
<?xml version="1.0"?> <opml version="1.0"> <head> <title> test </title> </head> <body> <outline text="test"> <outline text="try" _note="Here is inline html:

<div> 
<balise>
bla bla
</div>"/> </outline> </body> </opml>
|
|
^D
|
|
# test
|
|
|
|
## try
|
|
|
|
Here is inline html:
|
|
|
|
\<div> \<balise> bla bla \</div>
|
|
|
|
```
|