Smileyt / python-markdown2

Automatically exported from code.google.com/p/python-markdown2
Other
0 stars 0 forks source link

markup not processed in footnotes #11

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. >>> m = markdown2.Markdown(extras=['footnotes'])
2. >>> m.convert('hi.[^1]\n[^1]: A _note_.')
3.

What is the expected output? What do you see instead?

Output for footnote should be

   <ol>\n<li id="fn-1">\n<p>A <em>note</em>. ...

or

   <ol>\n<li id="fn-1">A <em>note</em>. ...

but is

   <ol>\n<li id="fn-1">\n<p>A _note_. ...

What version of the product are you using? On what operating system?

r107, OS X

Please provide any additional information below.

I've only verified that this is a problem with markdown characters _ and *.

Original issue reported on code.google.com by rob.hamr...@gmail.com on 5 Dec 2007 at 7:07

GoogleCodeExporter commented 8 years ago
Fixed in r109. Thanks, Rob!

Original comment by tre...@gmail.com on 6 Dec 2007 at 5:16