diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-07-13 16:15:45 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-07-13 16:15:45 -0700 |
commit | 3e95fd586dfc286cb1bb7300521ccd2a6d11bc1f (patch) | |
tree | 80386ef50e02b499b1ce942542bff946ce838ced /tests | |
parent | 81088281dea1283159f7e0cf3d9c2a5082e06d8a (diff) | |
download | pandoc-3e95fd586dfc286cb1bb7300521ccd2a6d11bc1f.tar.gz |
Use raw HTML for complex block quotes.
As far as I can see, dokuwiki markup is pretty limited in what
can go in a `>` block quote: just a single line of paragraph
text. (#1398)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/writer.dokuwiki | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/writer.dokuwiki b/tests/writer.dokuwiki index e1844d62a..9801ed262 100644 --- a/tests/writer.dokuwiki +++ b/tests/writer.dokuwiki @@ -47,7 +47,8 @@ E-mail style: > This is a block quote. It is pretty short. -> Code in a block quote: +<HTML><blockquote> +Code in a block quote: <code>sub status { print "working"; @@ -62,7 +63,7 @@ Nested block quotes: > nested > nested - +</blockquote></HTML> This should not be a block quote: 2 > 1. And a following paragraph. |