From b1b9d28cdc4e43668df70d67f36d12c3d4e16d88 Mon Sep 17 00:00:00 2001 From: albert-github Date: Tue, 13 Oct 2020 15:37:01 +0200 Subject: 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). --- src/configgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) #description -> description (see: address) - doc = re.sub('([^<]*)', '\\2 (see: \\1)', doc) + doc = re.sub('([^<]*)', '\\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. -- cgit v0.12