diff options
author | Yuri Takhteyev <yuri@freewisdom.org> | 2008-07-25 10:52:38 -0700 |
---|---|---|
committer | Yuri Takhteyev <yuri@freewisdom.org> | 2008-07-25 10:52:38 -0700 |
commit | 99cda0ae525470c23bb59334e141baeabe963445 (patch) | |
tree | 57c53c8526e171c3898fd9eafc06a901ed36516f | |
parent | caef3e90d46830db37888a7f7f897c450cf4f1e7 (diff) | |
download | markdown-99cda0ae525470c23bb59334e141baeabe963445.tar.gz markdown-99cda0ae525470c23bb59334e141baeabe963445.tar.bz2 markdown-99cda0ae525470c23bb59334e141baeabe963445.zip |
Darius Bacon's patch for the RSS extension for the case where no items
are defined.
-rw-r--r-- | mdx_rss.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -78,6 +78,7 @@ class RssPostProcessor (markdown.Postprocessor): ("description", None)): channel.appendChild(doc.createElement(tag, textNode = text)) + item = None for child in oldDocElement.childNodes : if child.type == "element" : |