aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/nl2br.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/extensions/nl2br.md')
-rw-r--r--docs/extensions/nl2br.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/extensions/nl2br.md b/docs/extensions/nl2br.md
deleted file mode 100644
index affd8ee..0000000
--- a/docs/extensions/nl2br.md
+++ /dev/null
@@ -1,25 +0,0 @@
-title: New Line to Break Extension
-prev_title: Meta-Data Extension
-prev_url: meta_data.html
-next_title: RSS Extension
-next_url: rss.html
-
-NL2BR Extension
-===============
-
-A Python-Markdown extension to treat newlines as hard breaks; like
-StackOverflow and [GitHub][] flavored Markdown do.
-
-Usage:
-
- >>> import markdown
- >>> text = """
- ... Line 1
- ... Line 2
- ... """
- >>> html = markdown.markdown(text, extensions=['nl2br'])
- >>> print html
- <p>Line 1<br />
- Line 2</p>
-
-[Github]: http://github.github.com/github-flavored-markdown/