Fix codegenerator to handle the <emphasis> doxygen generated by just putting back...
authorJim Carroll <thecarrolls@jiminger.com>
Sun, 8 Dec 2013 13:08:08 +0000 (08:08 -0500)
committerJim Carroll <thecarrolls@jiminger.com>
Sun, 8 Dec 2013 13:08:08 +0000 (08:08 -0500)
tools/codegenerator/Helper.groovy

index 01fa7e5..1e98df0 100644 (file)
@@ -153,6 +153,11 @@ public class Helper
             ret += newline
           else if (it.name() == 'ndash')
             ret += "--"
+          else if (it.name() == 'emphasis')
+          {
+            ret += '*'
+            it.children().each handleDoc
+          }
           else
             System.out.println("WARNING: Cannot parse the following as part of the doxygen processing:" + XmlUtil.serialize(it))
         }