aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2013-02-12 16:16:54 -0500
committerWaylan Limberg <waylan@gmail.com>2013-02-12 16:16:54 -0500
commit5c5612a404f920e08aacfb50fcf4eca08a994d17 (patch)
treecff0b705a10c72644ed3675e540b44f3e6e81a3e /docs/extensions
parentb913666b4392bab993cec34ee85dd5de77601bd5 (diff)
downloadmarkdown-5c5612a404f920e08aacfb50fcf4eca08a994d17.tar.gz
markdown-5c5612a404f920e08aacfb50fcf4eca08a994d17.tar.bz2
markdown-5c5612a404f920e08aacfb50fcf4eca08a994d17.zip
Remove RSS Extension.
Closes #143. If you would like to continue using the extension (not recomended), it is archived on [Github](https://gist.github.com/waylan/4773365).
Diffstat (limited to 'docs/extensions')
-rw-r--r--docs/extensions/index.txt2
-rw-r--r--docs/extensions/nl2br.txt4
-rw-r--r--docs/extensions/rss.txt41
-rw-r--r--docs/extensions/sane_lists.txt4
4 files changed, 4 insertions, 47 deletions
diff --git a/docs/extensions/index.txt b/docs/extensions/index.txt
index c9ee005..5cbdd7d 100644
--- a/docs/extensions/index.txt
+++ b/docs/extensions/index.txt
@@ -69,7 +69,6 @@ Extension | Name in Python-Markdown
[HeaderId] | `headerid`
[Meta-Data] | `meta`
[New Line to Break] | `nl2br`
-[RSS] | `rss`
[Sane Lists] | `sane_lists`
[Table of Contents] | `toc`
[WikiLinks] | `wikilinks`
@@ -80,7 +79,6 @@ Extension | Name in Python-Markdown
[HeaderId]: header_id.html
[Meta-Data]: meta_data.html
[New Line to Break]: nl2br.html
-[RSS]: rss.html
[Sane Lists]: sane_lists.html
[Table of Contents]: toc.html
[WikiLinks]: wikilinks.html
diff --git a/docs/extensions/nl2br.txt b/docs/extensions/nl2br.txt
index affd8ee..ef479fd 100644
--- a/docs/extensions/nl2br.txt
+++ b/docs/extensions/nl2br.txt
@@ -1,8 +1,8 @@
title: New Line to Break Extension
prev_title: Meta-Data Extension
prev_url: meta_data.html
-next_title: RSS Extension
-next_url: rss.html
+next_title: Sane Lists Extension
+next_url: sane_lists.html
NL2BR Extension
===============
diff --git a/docs/extensions/rss.txt b/docs/extensions/rss.txt
deleted file mode 100644
index 67e6d96..0000000
--- a/docs/extensions/rss.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-title: RSS Extension
-prev_title: New Line to Break Extension
-prev_url: nl2br.html
-next_title: Sane Lists Extension
-next_url: sane_lists.html
-
-RSS
-===
-
-Summary
--------
-
-An extension to Python-Markdown that outputs a markdown document as RSS. This
-extension has been included with Python-Markdown since 1.7 and should be
-available to anyone who has a typical install of Python-Markdown.
-
-Usage
------
-
-From the Python interpreter:
-
- >>> import markdown
- >>> text = "Some markdown document."
- >>> rss = markdown.markdown(text, ['rss'])
-
-Configuring the Output
-----------------------
-
-An RSS document includes some data about the document (URI, author, title) that
-will likely need to be configured for your needs. Therefore, three configuration
-options are available:
-
-* **URL** : The Main URL for the document.
-* **CREATOR** : The Feed creator's name.
-* **TITLE** : The title for the feed.
-
-An example:
-
- >>> rss = markdown.markdown(text, extensions = \
- ... ['rss(URL=http://example.com,CREATOR=JOHN DOE,TITLE=My Document)']
- ... )
diff --git a/docs/extensions/sane_lists.txt b/docs/extensions/sane_lists.txt
index e6c73f4..4d24d17 100644
--- a/docs/extensions/sane_lists.txt
+++ b/docs/extensions/sane_lists.txt
@@ -1,6 +1,6 @@
title: Sane Lists Extension
-prev_title: RSS Extension
-prev_url: rss.html
+prev_title: New Line to Break Extension
+prev_url: nl2br.html
next_title: Table of Contents Extension
next_url: toc.html