diff options
-rwxr-xr-x | to-wiki/wikiconv2.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/to-wiki/wikiconv2.py b/to-wiki/wikiconv2.py index 5f2da13d88..456810d38c 100755 --- a/to-wiki/wikiconv2.py +++ b/to-wiki/wikiconv2.py @@ -44,7 +44,7 @@ replace_paragraph_role = \ 'head2': '== ', # used only in one file, probably in error? 'listitem': '', 'logocode': '<code>', - 'note': '{{Note|', + 'note': '{{Note|1=', 'null': '', # special paragraph for Variable, CaseInline, etc. 'paragraph': '', 'related': '', # used only in one file, probably in error? @@ -52,18 +52,18 @@ replace_paragraph_role = \ 'sup' : '', 'tablecontent': '| | ', 'tablecontentcode': '| | <code>', - 'tablecontentnote': '| |{{Note|', - 'tablecontenttip': '| |{{Tip|', - 'tablecontentwarning': '| |{{Warning|', + 'tablecontentnote': '| |{{Note|1=', + 'tablecontenttip': '| |{{Tip|1=', + 'tablecontentwarning': '| |{{Warning|1=', 'tablehead': '! scope="col" | ', - 'tablenextnote': '\n{{Note|', + 'tablenextnote': '\n{{Note|1=', 'tablenextpara': '\n', 'tablenextparacode': '\n<code>', - 'tablenexttip': '\n{{Tip|', - 'tablenextwarning': '\n{{Warning|', - 'tip': '{{Tip|', + 'tablenexttip': '\n{{Tip|1=', + 'tablenextwarning': '\n{{Warning|1=', + 'tip': '{{Tip|1=', 'variable': '', - 'warning': '{{Warning|', + 'warning': '{{Warning|1=', }, 'end':{'bascode': '\n', 'code': '</code>\n\n', |