A few more additions to wman.c to account for symbol encoding.
authorJustin Lemkul <jalemkul@vt.edu>
Mon, 4 Apr 2011 12:05:31 +0000 (08:05 -0400)
committerJustin Lemkul <jalemkul@vt.edu>
Mon, 4 Apr 2011 12:05:31 +0000 (08:05 -0400)
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)