123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- # -*- coding: utf-8 -*-
- import sys, os
- # If extensions (or modules to document with autodoc) are in another directory,
- # add these directories to sys.path here. If the directory is relative to the
- # documentation root, use os.path.abspath to make it absolute, like shown here.
- #sys.path.insert(0, os.path.abspath('.'))
- # -- General configuration -----------------------------------------------------
- # If your documentation needs a minimal Sphinx version, state it here.
- #needs_sphinx = '1.0'
- # Add any Sphinx extension module names here, as strings. They can be extensions
- # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
- extensions = ['sensio.sphinx.refinclude', 'sensio.sphinx.configurationblock', 'sensio.sphinx.phpcode']
- # Add any paths that contain templates here, relative to this directory.
- templates_path = ['_templates']
- # The suffix of source filenames.
- source_suffix = '.rst'
- # The encoding of source files.
- #source_encoding = 'utf-8-sig'
- # The master toctree document.
- master_doc = 'index'
- # General information about the project.
- project = u'FriendsOfSymfony ~ CKEditorBundle'
- copyright = u''
- # List of patterns, relative to source directory, that match files and
- # directories to ignore when looking for source files.
- exclude_patterns = ['_build']
- # The name of the Pygments (syntax highlighting) style to use.
- pygments_style = 'sphinx'
- # This will be used when using the shorthand notation
- highlight_language = 'php'
- # -- Options for HTML output ---------------------------------------------------
- import sphinx_rtd_theme
- # The theme to use for HTML and HTML Help pages. See the documentation for
- # a list of builtin themes.
- html_theme = 'sphinx_rtd_theme'
- # Add any paths that contain custom themes here, relative to this directory.
- html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
- # Add any paths that contain custom static files (such as style sheets) here,
- # relative to this directory. They are copied after the builtin static files,
- # so a file named "default.css" will overwrite the builtin "default.css".
- html_static_path = []
- # Output file base name for HTML help builder.
- htmlhelp_basename = 'doc'
- # -- Options for LaTeX output --------------------------------------------------
- latex_elements = {
- # The paper size ('letterpaper' or 'a4paper').
- #'papersize': 'letterpaper',
- # The font size ('10pt', '11pt' or '12pt').
- #'pointsize': '10pt',
- # Additional stuff for the LaTeX preamble.
- #'preamble': '',
- }
|