Skip to content

Commit d5e17f9

Browse files
authored
Merge pull request #6765 from shati-patel/docs-config-fixes
Docs: Fix inconsistencies in sphinx config files
2 parents bb6c079 + 64fcbe0 commit d5e17f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/codeql/ql-training/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
import os
4848

4949
def setup(sphinx):
50-
sys.path.insert(0, os.path.join(os.path.dirname( __file__ ), '..'))
50+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.path.pardir))
5151
from qllexer import QLLexer
5252
sphinx.add_lexer("ql", QLLexer())
5353

docs/codeql/support/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
'body_text': '#333',
7070
'link': '#2F1695',
7171
'link_hover': '#2F1695',
72-
'font_family': 'Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Segoe UI Symbol;',
7372
'show_powered_by': False,
7473
'nosidebar':True,
74+
'head_font_family': '-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"',
7575
}
7676

7777
html_favicon = '../images/site/favicon.ico'

0 commit comments

Comments
 (0)