Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
Added images folder to static paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Geneva committed Dec 8, 2020
1 parent 1c8eaab commit 10bb438
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ sphinx:
# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
setup_py_install: false
install:
- requirements: docs/requirements.txt
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('../..'))
sys.path.insert(0, os.path.abspath('../../tmglow'))

from sphinx.ext.autodoc import between
Expand Down Expand Up @@ -74,4 +75,4 @@ def setup(app):
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ['_static', '_images']

0 comments on commit 10bb438

Please sign in to comment.