summaryrefslogtreecommitdiff
path: root/README.creole
diff options
context:
space:
mode:
authorJensDiemer <git@jensdiemer.de>2011-08-05 21:30:17 +0200
committerJensDiemer <git@jensdiemer.de>2011-08-05 21:30:17 +0200
commit0a8da0bb26a97bd9f3d7702716a402b400fa6633 (patch)
tree92dcf3ae8d5a4e051f7769a323696998269ef08a /README.creole
parent4c2430d2cd44f969b57c7297c075b711b4641f2b (diff)
downloadcreole-0a8da0bb26a97bd9f3d7702716a402b400fa6633.tar.gz
Bugfix if docutils are not installed - API change for rest2html import!
Diffstat (limited to 'README.creole')
-rw-r--r--README.creole9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.creole b/README.creole
index da32204..3100b14 100644
--- a/README.creole
+++ b/README.creole
@@ -45,9 +45,9 @@ u'This is **creole //markup//**'
== rest2html
-Convert ReStructuredText into clean html code:
+Convert ReStructuredText into clean html code (needs [[http://pypi.python.org/pypi/docutils docutils]]):
{{{
->>> from creole import rest2html
+>>> from creole.rest2html.clean_writer import rest2html
>>> rest2html(u"A ReSt link to `PyLucid CMS <http://www.pylucid.org>`_ :)")
u'<p>A ReSt link to <a href="http://www.pylucid.org">PyLucid CMS</a> :)</p>\\n'
}}}
@@ -91,7 +91,10 @@ Contributers should take a look at this page:
= history
-* v0.7pre
+* v0.7.1
+** Bugfix if docutils are not installed
+** API change: rest2html is now here: {{{ from creole.rest2html.clean_writer import rest2html }}}
+* v0.7.0
** **NEW**: Add a html2reStructuredText converter (only a subset of reSt supported)
* v0.6.1
** Bugfix: separate lines with one space in "wiki style line breaks" mode