to-wiki/wikiconv2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit d8f46055f562917e857c4395601138f0515e71d0 Author: Andras Timar <[email protected]> Date: Fri May 10 14:18:19 2013 +0200 fdo#64205 escape '' in help text with <nowiki> tag Change-Id: I07fed20194bcb4223c1070866fd147388da57ba9 Reviewed-on: https://gerrit.libreoffice.org/3845 Reviewed-by: Fridrich Strba <[email protected]> Tested-by: Fridrich Strba <[email protected]> diff --git a/to-wiki/wikiconv2.py b/to-wiki/wikiconv2.py index 00d43d2..fb19eae 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): _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
