Subject: | Underscores in `code_sections` must not be \-escaped |
The module will backslash-escape underscores in code sections, but this
will result in the backslashes themselves being rendered by Markdown:
<code>foo_bar</code> is converted to `foo\_bar`.
Below is a test for this:
--- markdown.old 2008-Aug-06 18:13:50
+++ markdown.t 2009-Mar-10 02:27:10
@@ -142,145 +142,151 @@
`printf()`
__NEXT__
+underscores in code have no effect
+__H__
+<code>foo _bar_ baz foo_bar</code>
+__W__
+`foo _bar_ baz foo_bar`
+__NEXT__
inline image ::image_style('inline')
__H__
HTH,
Dan