Tons of small fixes to documentation.
[alexxy/gromacs.git] / src / gmxlib / wman.c
index c56958363e2848cff26158f5a4ebc13284ecafd9..ec2b16fa838a86b9ec4a870893cc9001d48ca30b 100644 (file)
@@ -90,6 +90,10 @@ const t_sandr_const sandrTeX[] = {
   { "[BR]", "\\\\"   },
   { "%",    "\\%"    },
   { "&",    "\\&"    },
+  /* The next couple of lines allow true Greek symbols to be written to the 
+     manual, which makes it look pretty */
+  { "[GRK]", "$\\"   },
+  { "[grk]", "$"     },
   /* The next two lines used to substitute "|" and "||" to "or", but only
    * g_angle used that functionality, so that was changed to a textual
    * "or" there, so that other places could use those symbols to indicate
@@ -107,7 +111,9 @@ const t_sandr_const sandrTty[] = {
   { "[IT]", "" },
   { "[it]", "" },
   { "[PAR]","\n\n" },
-  { "[BR]", "\n"}
+  { "[BR]", "\n"},
+  { "[GRK]", "" },
+  { "[grk]", "" }
 };
 #define NSRTTY asize(sandrTty)
 
@@ -154,7 +160,9 @@ const t_sandr_const sandrHTML[] = {
   { "[IT]", "<it>" },
   { "[it]", "</it>" },
   { "[PAR]","<p>" },
-  { "[BR]", "<br>" }
+  { "[BR]", "<br>" },
+  { "[GRK]", "&"  },
+  { "[grk]", ";"  }
 };
 #define NSRHTML asize(sandrHTML)