diff options
author | Andras Timar <atimar@suse.com> | 2013-05-10 14:18:19 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-05-10 14:18:19 +0200 |
commit | 9c6ee8419cc4e7ff0d5b3cfbd9fc0e538e78f8ab (patch) | |
tree | 581e1cac7d235409dd3601254f4be848ab4b3e90 /to-wiki | |
parent | c599d2dde1df55d8d743d4eaf3521dbb4db10361 (diff) |
fdo#64205 escape '' in help text with <nowiki> tag
Change-Id: I07fed20194bcb4223c1070866fd147388da57ba9
Diffstat (limited to 'to-wiki')
-rwxr-xr-x | to-wiki/wikiconv2.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/to-wiki/wikiconv2.py b/to-wiki/wikiconv2.py index 0ed734d049..6de42b82a4 100755 --- a/to-wiki/wikiconv2.py +++ b/to-wiki/wikiconv2.py @@ -129,7 +129,8 @@ replace_text_list = \ [["$[officename]", "{{ProductName}}"], ["%PRODUCTNAME", "{{ProductName}}"], ["$PRODUCTNAME", "{{ProductName}}"], - ["font size", u"\u200dfont size"] + ["font size", u"\u200dfont size"], + ["''","<nowiki>''</nowiki>"] ] def get_link_filename(link, name): |