Skip to content
Snippets Groups Projects
Commit 7aa29c9f authored by andy's avatar andy
Browse files

ENH: Converted doxygen tags to \ from /

parent f1f261af
Branches
Tags
No related merge requests found
......@@ -6,14 +6,14 @@ BEGIN {
}
/\/table/ {
/\\table/ {
flag = 1;
firstRow = 1;
next;
}
/\/endtable/ {
/\\endtable/ {
if (data != "")
{
printf "<table class=\"OFTable\">\n";
......@@ -27,14 +27,14 @@ BEGIN {
}
/\/vartable/ {
/\\vartable/ {
flag = 2;
firstRow = 1;
next;
}
/\/endvartable/ {
/\\endvartable/ {
if (data != "")
{
printf "<table border="0">\n";
......@@ -51,7 +51,7 @@ BEGIN {
{
if (flag > 0)
{
data = (data "<tr>");
data = (data "<tr>\n");
if (flag == 1)
{
for (i = 0; i <= NF; i++)
......
......@@ -163,7 +163,7 @@ s/.*\*\//\*\//
# convert /heading in source files to bold font and add some space
s#/heading \(.*\)#<br><b>\1</b>#g
s#\\heading \(.*\)#<br><b>\1</b>#g
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment