diff options
author | Matt Trentini <matt.trentini@gmail.com> | 2022-08-19 01:15:50 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-08-26 15:09:06 +1000 |
commit | 6b16ce8d38461e9a8f11642a4a9c6e4621c00872 (patch) | |
tree | 93fc39c40ce033597efc2f0ad1d73311b3a41308 /docs/conf.py | |
parent | 2e386bcf76c38a81a9de93452f9a253c571d2b72 (diff) |
docs: Update CPython differences and improve the look of table layouts.
Updated some of the CPython feature differences:
- Updated status of some features.
- Added CSS to fix table widths to 100% and word wrap.
- Specified explicit table column ratios to improve layout appearance.
- Added missing references to anchors.
- Better consistency with use of formatting and case.
Diffstat (limited to 'docs/conf.py')
-rwxr-xr-x | docs/conf.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index a7a4ab08c..5533bf019 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -166,6 +166,10 @@ html_favicon = 'static/favicon.ico' # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['static'] +# Add a custom CSS file for HTML generation +html_css_files = [ + 'custom.css', +] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. |