summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-10-15 20:21:16 (GMT)
committerGitHub <noreply@github.com>2020-10-15 20:21:16 (GMT)
commit3bd6198e8f568796fdf98940ecc0362c8707178e (patch)
treea4f5348990f98b6d479773d079b7507d05c3de89
parent8182fbcf6b46390bf5f621101fbbcf0808ce28f2 (diff)
parentb1b9d28cdc4e43668df70d67f36d12c3d4e16d88 (diff)
downloadDoxygen-3bd6198e8f568796fdf98940ecc0362c8707178e.zip
Doxygen-3bd6198e8f568796fdf98940ecc0362c8707178e.tar.gz
Doxygen-3bd6198e8f568796fdf98940ecc0362c8707178e.tar.bz2
Merge pull request #8097 from albert-github/feature/issue_8093
issue #8093 Some URLs in fresh/updated Doxyfile are split over two lines
-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.