diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-12-17 09:47:24 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-12-17 09:52:53 -0800 |
commit | 808f6d3fa1816401d9eb1d6a5d1821fb783cc1d5 (patch) | |
tree | 95cd11a3a778085779b113d1ee1fc9e5bd3700a4 /test/command | |
parent | d35e396f3ceb64df61fea02164ab56f1c3b140a2 (diff) | |
download | pandoc-808f6d3fa1816401d9eb1d6a5d1821fb783cc1d5.tar.gz |
OPML reader: enable raw HTML and other extensions by default for notes.
This fixes a regression in 2.0.
Note that extensions can now be individually disabled, e.g.
`-f opml-smart-raw_html`.
Closes #4164.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/4164.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/command/4164.md b/test/command/4164.md new file mode 100644 index 000000000..8cfc960a0 --- /dev/null +++ b/test/command/4164.md @@ -0,0 +1,35 @@ +``` +% 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\> + +``` |