diff --git a/README.md b/README.md index 44674e30..4f4917c8 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ ![Flathub](https://img.shields.io/flathub/v/net.retrodeck.retrodeck) ![Discord](https://img.shields.io/discord/951662718102962256?label=discord) ![GitHub](https://img.shields.io/github/license/XargonWan/RetroDECK) +[![Documentation Status](https://readthedocs.org/projects/retrodeck/badge/?version=latest)](https://retrodeck.readthedocs.io/en/latest/?badge=latest) + # RetroDECK on your device! diff --git a/readthedocs/conf.py b/readthedocs/conf.py new file mode 100644 index 00000000..d70a3702 --- /dev/null +++ b/readthedocs/conf.py @@ -0,0 +1,25 @@ +project = 'RetroDECK' +author = 'RetroDECK Team' + +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.doctest', + 'sphinx.ext.intersphinx', + 'sphinx.ext.todo', + 'sphinx.ext.coverage', + 'sphinx.ext.mathjax', + 'sphinx.ext.ifconfig', + 'sphinx.ext.viewcode', +] + +templates_path = ['_templates'] + +source_suffix = '.rst' + +master_doc = 'index' + +language = None + +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + +pygments_style = None