diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-01-21 20:54:12 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-21 20:54:12 -0800 |
commit | f86ac89383110f2755a53d49dc508da873bcaf0a (patch) | |
tree | 8fb106f831f244f62303518f95ce3f74ce0ee32c /test | |
parent | 847ff4f83dac7eb3859fdbc1390ee69f12398557 (diff) | |
download | pandoc-f86ac89383110f2755a53d49dc508da873bcaf0a.tar.gz |
HTML and markdown: treat textarea as a verbatim environment.
We don't want to parse its contents as Markdown or HTML.
Closes #5241.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/5241.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/command/5241.md b/test/command/5241.md new file mode 100644 index 000000000..c008b534f --- /dev/null +++ b/test/command/5241.md @@ -0,0 +1,12 @@ +``` +% pandoc -f markdown -t html5 +<textarea> + one + *two* +</textarea> +^D +<textarea> + one + *two* +</textarea> +``` |