Description

nobr is obsolete and therefore we will never interpret it in process_inline by the gui converter.

But also I have a big amount of pages which can't be processed because of that element.

These pages throw an error for a silly reason and can't be converted.

Example

Component selection

Details

MoinMoin Version

1.9

OS and Version

Python Version

Server Setup

Server Details

Language you are using the wiki in (set in the browser/UserPreferences)

Workaround

Discussion

An easy solution is to just ignore this tag

   1 diff -r e77e7448ae1f MoinMoin/converter/text_html_text_moin_wiki.py
   2 --- a/MoinMoin/converter/text_html_text_moin_wiki.py    Sun May 09 22:53:36 2010 +0200
   3 +++ b/MoinMoin/converter/text_html_text_moin_wiki.py    Tue May 11 19:50:57 2010 +0200
   4 @@ -780,7 +780,7 @@
   5              return
   6  
   7          # unsupported tags
   8 -        if name in (u'title', u'meta', u'style'):
   9 +        if name in (u'title', u'meta', u'style', 'nobr'):
  10              return
  11  
  12          if name in ('h1', 'h2', 'h3', 'h4', 'h5', 'h6', ): # headers are not allowed here (e.g. inside a ul li),

Plan


CategoryMoinMoinBug

MoinMoin: MoinMoinBugs/GuiConverter and processinline nobr (last edited 2010-05-11 17:59:27 by ReimarBauer)