summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy <jimmy@spalge.com>2022-06-13 18:57:06 +1200
committerJimmy <jimmy@spalge.com>2022-06-13 18:57:06 +1200
commit07fa7d4b13afc1e90e4c1277ad311cb411ec7b91 (patch)
tree07903d75215d765c4a7acf11380441adbf852afd
parent153f52d3aa147c57406c5438eb4aae45cb845f13 (diff)
parent51ab91c1aaf69dc12a50f859ed1c7d37d66210c9 (diff)
downloadqutebrowser-07fa7d4b13afc1e90e4c1277ad311cb411ec7b91.tar.gz
qutebrowser-07fa7d4b13afc1e90e4c1277ad311cb411ec7b91.zip
Merge pull request #7241 from emanuele6/doc
asciidoc2html.py: also install qute://install.html and qute://stacktrace.html
-rwxr-xr-xscripts/asciidoc2html.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py
index 6b4e3fb0d..ba8493247 100755
--- a/scripts/asciidoc2html.py
+++ b/scripts/asciidoc2html.py
@@ -43,7 +43,10 @@ class AsciiDoc:
"""Abstraction of an asciidoc subprocess."""
- FILES = ['faq', 'changelog', 'contributing', 'quickstart', 'userscripts']
+ FILES = [
+ 'faq', 'changelog', 'contributing', 'quickstart', 'userscripts',
+ 'install', 'stacktrace'
+ ]
def __init__(self,
asciidoc: Optional[str],