aboutsummaryrefslogtreecommitdiff
path: root/test/writer.custom
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-10-08 12:32:42 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-10-08 12:32:42 -0700
commit2054bcbff6afd6c844c4c491ac868b4901b079dd (patch)
tree2749d246ae9409c5aaf84ff6a0d2de706b9261a8 /test/writer.custom
parent641849b70a851c45ce3d3fb438eeee7fd813d070 (diff)
downloadpandoc-2054bcbff6afd6c844c4c491ac868b4901b079dd.tar.gz
Fix custom writer test.
The custom writer is now less aggressive about escaping `"`.
Diffstat (limited to 'test/writer.custom')
-rw-r--r--test/writer.custom4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/writer.custom b/test/writer.custom
index db44b7b0c..2cb398eb1 100644
--- a/test/writer.custom
+++ b/test/writer.custom
@@ -57,7 +57,7 @@ It is pretty short.</p>
<p>Code in a block quote:</p>
<pre><code>sub status {
- print &quot;working&quot;;
+ print "working";
}</code></pre>
<p>A list:</p>
@@ -92,7 +92,7 @@ It is pretty short.</p>
<pre><code>---- (should be four hyphens)
sub status {
- print &quot;working&quot;;
+ print "working";
}
this code block is indented by one tab</code></pre>