Fix custom writer test.

The custom writer is now less aggressive about escaping `"`.
This commit is contained in:
John MacFarlane 2020-10-08 12:32:42 -07:00
parent 641849b70a
commit 2054bcbff6

View file

@ -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>