Docs: Fix inconsistencies in sphinx config files

This commit is contained in:
shati-patel
2021-09-27 18:50:59 +01:00
parent bb6c079e5a
commit 64fcbe05c3
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ import sys
import os
def setup(sphinx):
sys.path.insert(0, os.path.join(os.path.dirname( __file__ ), '..'))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.path.pardir))
from qllexer import QLLexer
sphinx.add_lexer("ql", QLLexer())

View File

@@ -69,9 +69,9 @@ html_theme_options = {'font_size': '16px',
'body_text': '#333',
'link': '#2F1695',
'link_hover': '#2F1695',
'font_family': 'Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Segoe UI Symbol;',
'show_powered_by': False,
'nosidebar':True,
'head_font_family': '-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"',
}
html_favicon = '../images/site/favicon.ico'