diff options
author | Antoine Pelisse <antoine.pelisse@amadeus.com> | 2012-07-16 17:05:43 +0200 |
---|---|---|
committer | Antoine Pelisse <antoine.pelisse@amadeus.com> | 2012-07-18 15:43:36 +0200 |
commit | cab1f5a7b4dc590f84734a72be8e84926327f710 (patch) | |
tree | a0256ca7e17a748a9c9278f6774aedf53c3d5c38 /docs/extensions | |
parent | f087887ab9d18d55c686da366fa3a23b303272a0 (diff) | |
download | markdown-cab1f5a7b4dc590f84734a72be8e84926327f710.tar.gz markdown-cab1f5a7b4dc590f84734a72be8e84926327f710.tar.bz2 markdown-cab1f5a7b4dc590f84734a72be8e84926327f710.zip |
Fixes example after moving AtomicString to util
Diffstat (limited to 'docs/extensions')
-rw-r--r-- | docs/extensions/api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/extensions/api.txt b/docs/extensions/api.txt index 8886b8f..0734e42 100644 --- a/docs/extensions/api.txt +++ b/docs/extensions/api.txt @@ -335,7 +335,7 @@ the second cell (``td2``) will be run through InlinePatterns latter): table.set("cellpadding", "2") # Set cellpadding to 2 tr = etree.SubElement(table, "tr") # Add child tr to table td1 = etree.SubElement(tr, "td") # Add child td1 to tr - td1.text = markdown.AtomicString("Cell content") # Add plain text content + td1.text = markdown.util.AtomicString("Cell content") # Add plain text content td2 = etree.SubElement(tr, "td") # Add second td to tr td2.text = "*text* with **inline** formatting." # Add markup text table.tail = "Text after table" # Add text after table |