From ec46692cf5c4d5e22950bc8e7d14cb0ec327fb87 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Wed, 7 Mar 2012 09:35:40 -0500 Subject: Rename docs/*.md => docs/*.txt The documentation uses features of Python-Markdown that are not supported on GitHub and it's better to get a source view of the docs anyway. For example, that way comments and bug reports can reference a specific line of a file. Of course, it makes sense for Github to render the README, so that is left with the `.md` file extension. --- docs/extensions/nl2br.md | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 docs/extensions/nl2br.md (limited to 'docs/extensions/nl2br.md') 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 -

Line 1
- Line 2

- -[Github]: http://github.github.com/github-flavored-markdown/ -- cgit v1.2.3