LF Docs Config
The purpose of this project is to allow LF projects a centralized location for
storing common project configuration.
To use this a project should create a conf.yaml file in the same
directory as their conf.py. The minimal configuration for conf.py
is::
from docs_conf import *
The minimal configuration for conf.yaml
file is::
---
project_cfg=myproject
Docs will load default configuration for 'myproject' from this package if it
exists, otherwise it will load basic configuration from Sphinx defaults.
Configuration precedence for configuration is as follows:
#. project/conf.py
#. project/conf.yaml
#. docs_conf/defaults/{project_cfg}.yaml
#. docs_conf/defaults/default.yaml
#. docs_conf/init.py
conf.py
structure and documentation:
http://www.sphinx-doc.org/en/stable/config.html
TODO