summaryrefslogtreecommitdiffstats
path: root/src/configgen.py
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-10-13 13:37:01 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-10-13 13:37:01 (GMT)
commitb1b9d28cdc4e43668df70d67f36d12c3d4e16d88 (patch)
tree2169e9079280c34b3bf305b804f47b01a64604ea /src/configgen.py
parentf64705ecdeff9eead62e63f27b2ba88bea87c259 (diff)
downloadDoxygen-b1b9d28cdc4e43668df70d67f36d12c3d4e16d88.zip
Doxygen-b1b9d28cdc4e43668df70d67f36d12c3d4e16d88.tar.gz
Doxygen-b1b9d28cdc4e43668df70d67f36d12c3d4e16d88.tar.bz2
issue #8093 Some URLs in fresh/updated Doxyfile are split over two lines
Created an explicit split of the line before the http address so the URL will start on a new line in the doxygen configuration file and won't be split anymore (unless the total length of the URL will be longer than 78 characters but this is in the doxygen settings not the case). (The other formats: HTML, LateX and the help in the doxywizard give still the same output results).
Diffstat (limited to 'src/configgen.py')
-rwxr-xr-xsrc/configgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configgen.py b/src/configgen.py
index 4ffa8f8..063c1f4 100755
--- a/src/configgen.py
+++ b/src/configgen.py
@@ -62,7 +62,7 @@ def transformDocs(doc):
# fallback for not handled
doc = re.sub('\\\\ref', '', doc)
#<a href="address">description</a> -> description (see: address)
- doc = re.sub('<a +href="([^"]*)" *>([^<]*)</a>', '\\2 (see: \\1)', doc)
+ doc = re.sub('<a +href="([^"]*)" *>([^<]*)</a>', '\\2 (see: \n\\1)', doc)
# LaTeX name as formula -> LaTeX
doc = doc.replace("\\f$\\mbox{\\LaTeX}\\f$", "LaTeX")
# Other formula's (now just 2) so explicitly mentioned.