summaryrefslogtreecommitdiff
path: root/src/configgen.py
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-10-15 11:12:58 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-10-15 11:12:58 +0900
commit3b6ea7abb3d529f7805ed54071d597f01b578740 (patch)
tree20a720c78ff4f8838599f22bdd6afe43277758bf /src/configgen.py
parent1ec16d649a01d369eecae2f1225c0ffa1caaf640 (diff)
downloaddoxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.tar.gz
doxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.tar.bz2
doxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.zip
Imported Upstream version 1.8.17upstream/1.8.17
Diffstat (limited to 'src/configgen.py')
-rwxr-xr-xsrc/configgen.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configgen.py b/src/configgen.py
index dbba264..6720116 100755
--- a/src/configgen.py
+++ b/src/configgen.py
@@ -21,6 +21,7 @@ from xml.dom import minidom, Node
def transformDocs(doc):
# join lines, unless it is an empty line
# remove doxygen layout constructs
+ # Note: also look at expert.cpp of doxywizard for doxywizard parts
doc = doc.strip()
doc = doc.replace("\n", " ")
doc = doc.replace("\r", " ")
@@ -57,6 +58,7 @@ def transformDocs(doc):
doc)
doc = re.sub('\\\\ref +external', '"Linking to external documentation"',
doc)
+ doc = re.sub('\\\\ref +formulas', '"Including formulas"', doc)
# fallback for not handled
doc = re.sub('\\\\ref', '', doc)
#<a href="address">description</a> -> description (see: address)