sphinx-rtd-theme 0.1.5


pip install sphinx-rtd-theme==0.1.5

Project Links

Meta
Author: Dave Snider

Classifiers

Development Status
  • 3 - Alpha

License
  • OSI Approved :: BSD License

Environment
  • Console
  • Web Environment

Intended Audience
  • Developers

Programming Language
  • Python :: 2.7
  • Python :: 3

Operating System
  • OS Independent

Topic
  • Documentation
  • Software Development :: Documentation

View a working demo over on readthedocs.org.

This is a prototype mobile-friendly sphinx theme I made for readthedocs.org. It’s currently in development and includes some rtd variable checks that can be ignored if you’re just trying to use it on your project outside of that site.

screen_mobile.png

Installation

Via package

Download the package or add it to your requirements.txt file:

$ pip install sphinx_rtd_theme

In your conf.py file:

import sphinx_rtd_theme

html_theme = "sphinx_rtd_theme"

html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]

Via git or download

Symlink or subtree the sphinx_rtd_theme/sphinx_rtd_theme repository into your documentation at docs/_themes/sphinx_rtd_theme then add the following two settings to your Sphinx conf.py file:

html_theme = "sphinx_rtd_theme"
html_theme_path = ["_themes", ]

How the Table of Contents builds

Currently the left menu will build based upon any toctree(s) defined in your index.rst file. It outputs 2 levels of depth, which should give your visitors a high level of access to your docs. If no toctrees are set the theme reverts to sphinx’s usual local toctree.

It’s important to note that if you don’t follow the same styling for your rST headers across your documents, the toctree will misbuild, and the resulting menu might not show the correct depth when it renders.

Contributing or modifying the theme

The sphinx_rtd_theme is primarily a sass project that requires a few other sass libraries. I’m using bower to manage these dependencies and compass to build the css. The good news is I have a very nice set of grunt operations that will not only load these dependecies, but watch for changes, rebuild the sphinx demo docs and build a distributable version of the theme. The bad news is this means you’ll need to set up your environment similar to that of a front-end developer (vs. that of a python developer). That means installing node and ruby.

Set up your environment

  1. Install sphinx into a virtual environment.

pip install sphinx
  1. Install sass and compass

gem install sass compass
  1. Install node, bower and grunt.

// Install node
brew install node

// Install bower and grunt
npm install -g bower grunt-cli

// Now that everything is installed, let's install the theme dependecies.
npm install

Now that our environment is set up, make sure you’re in your virtual environment, go to this repository in your terminal and run grunt:

grunt

This default task will do the following very cool things that make it worth the trouble.

  1. It’ll install and update any bower dependencies.

  2. It’ll run sphinx and build new docs.

  3. It’ll watch for changes to the sass files and build css from the changes.

  4. It’ll rebuild the sphinx docs anytime it notices a change to .rst, .html, .js or .css files.

Before you send a Pull Request

When you’re done with your edits, you can run grunt build to clean out the old files and rebuild a new distribution, compressing the css and cleaning out extraneous files. Please do this before you send in a PR.

TODO

  • Build real demo docs with lots of rst examples

  • Update to font-awesome 4.0 and have it build from bower, not the copy/paste hack I have now.

  • Separate some sass variables at the theme level so you can overwrite some basic colors.

  • Add the ability to set a logo.

3.0.2 Nov 13, 2024
3.0.1 Oct 09, 2024
3.0.0 Oct 07, 2024
3.0.0rc4 Oct 02, 2024
3.0.0rc3 Sep 26, 2024
3.0.0rc2 Sep 23, 2024
3.0.0rc1 Aug 20, 2024
2.1.0rc2 Aug 14, 2024
2.1.0rc1 Jul 23, 2024
2.0.0 Nov 28, 2023
2.0.0rc4 Oct 31, 2023
2.0.0rc3 Oct 24, 2023
2.0.0rc2 Aug 29, 2023
2.0.0rc1 Aug 21, 2023
1.3.0 Aug 21, 2023
1.3.0rc1 Aug 04, 2023
1.2.2 Jun 07, 2023
1.2.2rc1 Jun 07, 2023
1.2.1 May 23, 2023
1.2.0 Feb 07, 2023
1.2.0rc4 Feb 06, 2023
1.2.0rc3 Jan 18, 2023
1.2.0rc2 Jan 04, 2023
1.2.0rc1 Dec 16, 2022
1.1.1 Nov 04, 2022
1.1.0 Nov 01, 2022
1.1.0b3 Oct 13, 2022
1.1.0b2 Oct 12, 2022
1.1.0b1 Oct 12, 2022
1.0.0 Sep 13, 2021
1.0.0rc1 Aug 17, 2021
0.5.2 Apr 05, 2021
0.5.1 Jan 04, 2021
0.5.0 Jun 17, 2020
0.5.0rc2 Jun 05, 2020
0.5.0rc1 May 06, 2020
0.4.3 Feb 12, 2019
0.4.2 Oct 05, 2018
0.4.1 Jul 27, 2018
0.4.0 Jun 06, 2018
0.3.1 May 02, 2018
0.3.0 Apr 05, 2018
0.2.5b2 Dec 02, 2017
0.2.5b1 Apr 17, 2017
0.2.4 Mar 06, 2017
0.2.3 Mar 06, 2017
0.2.2 Mar 03, 2017
0.2.1 Mar 03, 2017
0.2.0 Mar 01, 2017
0.1.10b0 Feb 22, 2017
0.1.10a0 Jun 14, 2016
0.1.9 Sep 15, 2015
0.1.8 May 04, 2015
0.1.7 Mar 09, 2015
0.1.6 Mar 28, 2014
0.1.5 Nov 07, 2013
0.1.4 Nov 04, 2013
0.1.3 Nov 04, 2013
0.1.2 Nov 04, 2013
0.1.1 Nov 04, 2013
No dependencies