PHP Classes

File: docs/conf.py

Recommend this page to a friend!
  Classes of Italo Lelis de Vietro   Collections PHP Library   docs/conf.py   Download  
File: docs/conf.py
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Collections PHP Library
Manipulate collections of values
Author: By
Last change:
Date: 9 years ago
Size: 818 bytes
 

Contents

Class file image Download
import sys, os from sphinx.highlighting import lexers from pygments.lexers.web import PhpLexer lexers['php'] = PhpLexer(startinline=True, linenos=1) lexers['php-annotations'] = PhpLexer(startinline=True, linenos=1) primary_domain = 'php' extensions = [] templates_path = ['_templates'] source_suffix = '.rst' master_doc = 'index' project = u'Collections' copyright = u'2013, Ítalo Lelis de Vietro' version = '4.0.0' html_title = "Collections Documentation" html_short_title = "Collections" exclude_patterns = ['_build'] html_static_path = ['_static'] on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]