Skip to content

Commit b1b9d28

Browse files
committed
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).
1 parent f64705e commit b1b9d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/configgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def transformDocs(doc):
6262
# fallback for not handled
6363
doc = re.sub('\\\\ref', '', doc)
6464
#<a href="address">description</a> -> description (see: address)
65-
doc = re.sub('<a +href="([^"]*)" *>([^<]*)</a>', '\\2 (see: \\1)', doc)
65+
doc = re.sub('<a +href="([^"]*)" *>([^<]*)</a>', '\\2 (see: \n\\1)', doc)
6666
# LaTeX name as formula -> LaTeX
6767
doc = doc.replace("\\f$\\mbox{\\LaTeX}\\f$", "LaTeX")
6868
# Other formula's (now just 2) so explicitly mentioned.

0 commit comments

Comments
 (0)