-
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixes literal code blocks We got some highlight errors when `pygments` tried to parse the code So, we need to use the directive `:force:` and force our code to be highlighted * Changes `doc8` config to ignore `D000` in `railway.rst` doc8 is falling because it can't figure out what's the `:force:` directive * Adds import for annotations from `__future__` We need to add this import for now because `sphinx` can't figure out how to make the forward reference. To avoid warnings about this problem we have to import in all files that uses forward references. * Creates `.readthedocs.yml`
- Loading branch information
1 parent
8efb19a
commit 2c18487
Showing
28 changed files
with
204 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
|
||
python: | ||
version: 3.7 | ||
install: | ||
- docs/requirements.txt | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
fail_on_warning: true | ||
|
||
formats: all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.