diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 11:12:58 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 11:12:58 +0900 |
commit | 3b6ea7abb3d529f7805ed54071d597f01b578740 (patch) | |
tree | 20a720c78ff4f8838599f22bdd6afe43277758bf /src/configgen.py | |
parent | 1ec16d649a01d369eecae2f1225c0ffa1caaf640 (diff) | |
download | doxygen-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-x | src/configgen.py | 2 |
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) |