From: Justin Lemkul Date: Mon, 4 Apr 2011 12:05:31 +0000 (-0400) Subject: A few more additions to wman.c to account for symbol encoding. X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=commitdiff_plain;h=bc5695cd2d04198f9032c77a93631cce5894a114;p=alexxy%2Fgromacs.git A few more additions to wman.c to account for symbol encoding. --- diff --git a/src/gmxlib/wman.c b/src/gmxlib/wman.c index ec2b16fa83..4b42bb11ee 100644 --- a/src/gmxlib/wman.c +++ b/src/gmxlib/wman.c @@ -128,7 +128,9 @@ const t_sandr_const sandrWiki[] = { { "[IT]", "''" }, { "[it]", "''" }, { "[PAR]","\n\n" }, - { "[BR]", "\n"} + { "[BR]", "\n" }, + { "[GRK]", "&" }, + { "[grk]", ";" } }; #define NSRWIKI asize(sandrWiki) @@ -146,7 +148,9 @@ const t_sandr_const sandrNROFF[] = { { "^", "" }, { "#", "" }, { "[BR]", "\n"}, - { "-", "\\-"} + { "-", "\\-"}, + { "[GRK]", "" }, + { "[grk]", "" } }; #define NSRNROFF asize(sandrNROFF) @@ -176,7 +180,9 @@ const t_sandr_const sandrXML[] = { { "[IT]", "" }, { "[it]", "" }, { "[PAR]","\n" }, - { "[BR]", "
" } + { "[BR]", "
" }, + { "[GRK]", "" }, + { "[grk]", "" } }; #define NSRXML asize(sandrXML)