conf.py 700 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8; mode: python -*-
  2. """Configuration for the Searx user handbook
  3. """
  4. project = 'Searx User-HB'
  5. version = release = VERSION_STRING
  6. intersphinx_mapping['searx'] = (brand.DOCS_URL, None)
  7. # Grouping the document tree into LaTeX files. List of tuples
  8. # (source start file, target name, title,
  9. # author, documentclass [howto, manual, or own class]).
  10. latex_documents = [
  11. ('index' # startdocname
  12. , 'searx-user-hb.tex' # targetname
  13. , '' # take title from .rst
  14. , author # author
  15. , 'howto' # documentclass
  16. , False # toctree_only
  17. ),
  18. ]