From d9f1699a3bdca5edaa223a4dcfc1660eaf9affa8 Mon Sep 17 00:00:00 2001 From: meles5 Date: Fri, 20 Nov 2015 21:12:06 +0100 Subject: [PATCH] Improved website titles --- scripts/asciidoc2html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py index 3e1b78ae3..b63af782d 100755 --- a/scripts/asciidoc2html.py +++ b/scripts/asciidoc2html.py @@ -134,11 +134,11 @@ class AsciiDoc: if re.match(r'^=+$', line): line = line.replace('=', '-') found_title = True - title = last_line + "=" * (len(last_line) - 1) + title = last_line[:-1] + " | qutebrowser\n" + "=" * (len(last_line[:-1] + " | qutebrowser") - 1) elif re.match(r'^= .+', line): line = '==' + line[1:] found_title = True - title = last_line + "=" * (len(last_line) - 1) + title = last_line[:-1] + " | qutebrowser\n" + "=" * (len(last_line[:-1] + " | qutebrowser") - 1) if not hidden: outfp.write(line.replace(".asciidoc[", ".html["))