808f6d3fa1
This fixes a regression in 2.0. Note that extensions can now be individually disabled, e.g. `-f opml-smart-raw_html`. Closes #4164.
35 lines
770 B
Markdown
35 lines
770 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> 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\>
|
|
|
|
```
|