mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Converted doxygen tags to \ from /
This commit is contained in:
@ -6,14 +6,14 @@ BEGIN {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/\/table/ {
|
/\\table/ {
|
||||||
flag = 1;
|
flag = 1;
|
||||||
firstRow = 1;
|
firstRow = 1;
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/\/endtable/ {
|
/\\endtable/ {
|
||||||
if (data != "")
|
if (data != "")
|
||||||
{
|
{
|
||||||
printf "<table class=\"OFTable\">\n";
|
printf "<table class=\"OFTable\">\n";
|
||||||
@ -27,14 +27,14 @@ BEGIN {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/\/vartable/ {
|
/\\vartable/ {
|
||||||
flag = 2;
|
flag = 2;
|
||||||
firstRow = 1;
|
firstRow = 1;
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/\/endvartable/ {
|
/\\endvartable/ {
|
||||||
if (data != "")
|
if (data != "")
|
||||||
{
|
{
|
||||||
printf "<table border="0">\n";
|
printf "<table border="0">\n";
|
||||||
@ -51,7 +51,7 @@ BEGIN {
|
|||||||
{
|
{
|
||||||
if (flag > 0)
|
if (flag > 0)
|
||||||
{
|
{
|
||||||
data = (data "<tr>");
|
data = (data "<tr>\n");
|
||||||
if (flag == 1)
|
if (flag == 1)
|
||||||
{
|
{
|
||||||
for (i = 0; i <= NF; i++)
|
for (i = 0; i <= NF; i++)
|
||||||
|
|||||||
@ -163,7 +163,7 @@ s/.*\*\//\*\//
|
|||||||
|
|
||||||
|
|
||||||
# convert /heading in source files to bold font and add some space
|
# 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
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user