title: New Line to Break Extension New-Line-to-Break Extension =========================== Summary ------- The New-Line-to-Break (`nl2br`) Extension will cause newlines to be treated as hard breaks; like StackOverflow and [GitHub][] flavored Markdown do. [Github]: http://github.github.com/github-flavored-markdown/ Example ------- ```pycon >>> import markdown >>> text = """ ... Line 1 ... Line 2 ... """ >>> html = markdown.markdown(text, extensions=['nl2br']) >>> print html
Line 1
Line 2