diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-07-10 14:59:09 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-07-10 14:59:09 -0700 |
commit | a3b133b3d39c45f4b833ee94401cb80a15159214 (patch) | |
tree | b0dc834df8648798e29351242910ec97834c4929 | |
parent | 646a9823671b0e4011d8e40d03d99194def9ccc3 (diff) |
Fixed broken "pre" literal HTML example.
Insides weren't escaped properly.
-rw-r--r-- | spec.txt | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1904,14 +1904,14 @@ A pre tag (type 1): import Text.HTML.TagSoup main :: IO () -main = print $ parseTags "<a href=\"foo\">bar</a>" +main = print $ parseTags tags </code></pre> . <pre language="haskell"><code> import Text.HTML.TagSoup main :: IO () -main = print $ parseTags "<a href=\"foo\">bar</a>" +main = print $ parseTags tags </code></pre> . |