A few more additions to wman.c to account for symbol encoding.
[alexxy/gromacs.git] / src / gmxlib / wman.c
index ec2b16fa838a86b9ec4a870893cc9001d48ca30b..4b42bb11ee87bd2eb6c5b289b6753522f68d3de4 100644 (file)
@@ -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>" },
   { "[it]", "</it>" },
   { "[PAR]","</par>\n<par>" },
-  { "[BR]", "<br />" }
+  { "[BR]", "<br />" },
+  { "[GRK]", "" },
+  { "[grk]", "" }
 };
 #define NSRXML asize(sandrXML)