Mercurial > moin > 1.9
changeset 4117:72ac60ad99c9
text_html_text_moin_wiki.process_inline: added some more unsupported elements, bug fix for MoinMoinBugs/1.8_GUIEditorDoesNotSupportScriptElement
author | Reimar Bauer <rb.proj AT googlemail DOT com> |
---|---|
date | Sat, 20 Sep 2008 15:38:27 +0200 |
parents | 641814c82116 |
children | 60f3c8863f37 |
files | MoinMoin/converter/text_html_text_moin_wiki.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/converter/text_html_text_moin_wiki.py Sat Sep 20 14:50:03 2008 +0200 +++ b/MoinMoin/converter/text_html_text_moin_wiki.py Sat Sep 20 15:38:27 2008 +0200 @@ -802,7 +802,8 @@ command = ",," elif name == 'sup': command = "^" - elif name in ('font', 'meta', ): + elif name in ('area', 'center', 'code', 'embed', 'fieldset', 'font', 'form', 'iframe', 'input', 'label', 'link', 'map', + 'meta', 'noscript', 'option', 'script', 'select', 'textarea', 'wbr'): command = "" # just throw away unsupported elements else: raise ConvertError("process_inline: Don't support %s element" % name)