Python Markdown nl2br extension
问题 I'm a beginner programmer, and i've been trying to use the python markdown library in my web app. everything works fine, except the nl2br extension. when i try to convert text file to html using md.convert(text), it doesn't see to convert newlines to <br> . for example, before i convert, the text is: Puerto Rico =========== ------------------------------ ### Game Rules hello world! after i convert, i get: <h1>Puerto Rico</h1> <hr /> <h3>Game Rules</h3> <p>hello world!</p> My understanding is