Bump version to 19.1.0 (final)
[llvm-project.git] / flang / docs / conf.py
blob48f7b69f5d7505ceb9ad3866e244ac69f8ad52f8
1 # -*- coding: utf-8 -*-
2 # Flang documentation build configuration file.
4 # This file is execfile()d with the current directory set to its containing dir.
6 # Note that not all possible configuration values are present in this
7 # autogenerated file.
9 # All configuration values have a default; values that are commented out
10 # serve to show the default.
12 from datetime import date
13 # If extensions (or modules to document with autodoc) are in another directory,
14 # add these directories to sys.path here. If the directory is relative to the
15 # documentation root, use os.path.abspath to make it absolute, like shown here.
16 # sys.path.insert(0, os.path.abspath('.'))
18 # -- General configuration -----------------------------------------------------
20 # If your documentation needs a minimal Sphinx version, state it here.
21 # needs_sphinx = '1.0'
22 # Add any Sphinx extension module names here, as strings. They can be extensions
23 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
24 extensions = [
25 "sphinx.ext.todo",
26 "sphinx.ext.mathjax",
27 "sphinx.ext.intersphinx",
28 "sphinx.ext.autodoc",
31 # When building man pages, we do not use the markdown pages,
32 # So, we can continue without the myst_parser dependencies.
33 # Doing so reduces dependencies of some packaged llvm distributions.
34 try:
35 import myst_parser
37 extensions.append("myst_parser")
38 except ImportError:
39 if not tags.has("builder-man"):
40 raise
43 # Add any paths that contain templates here, relative to this directory.
44 templates_path = ["_templates"]
45 myst_heading_anchors = 6
47 import sphinx
49 # The encoding of source files.
50 # source_encoding = 'utf-8-sig'
52 # The master toctree document.
53 master_doc = "index"
55 # General information about the project.
56 project = "Flang"
57 copyright = "2017-%d, The Flang Team" % date.today().year
59 # The version info for the project you're documenting, acts as replacement for
60 # |version| and |release|, also used in various other places throughout the
61 # built documents. These are currently set to zero because we don't use them.
62 # Should somebody consider in the future to change them, they need to be updated
63 # everytime a new release comes out.
65 # The short version.
66 # version = '0'
67 # The full version, including alpha/beta/rc tags.
68 # release = '0'
70 # The language for content autogenerated by Sphinx. Refer to documentation
71 # for a list of supported languages.
72 # language = None
74 # There are two options for replacing |today|: either, you set today to some
75 # non-false value, then it is used:
76 # today = ''
77 # Else, today_fmt is used as the format for a strftime call.
78 # today_fmt = '%B %d, %Y'
80 # List of patterns, relative to source directory, that match files and
81 # directories to ignore when looking for source files.
82 exclude_patterns = ["_build", "analyzer", "FIR/*"]
84 # The reST default role (used for this markup: `text`) to use for all documents.
85 # default_role = None
87 # If true, '()' will be appended to :func: etc. cross-reference text.
88 # add_function_parentheses = True
90 # If true, the current module name will be prepended to all description
91 # unit titles (such as .. function::).
92 # add_module_names = True
94 # If true, sectionauthor and moduleauthor directives will be shown in the
95 # output. They are ignored by default.
96 # show_authors = False
98 # The name of the Pygments (syntax highlighting) style to use.
99 pygments_style = "friendly"
101 # A list of ignored prefixes for module index sorting.
102 # modindex_common_prefix = []
105 # -- Options for HTML output ---------------------------------------------------
107 # The theme to use for HTML and HTML Help pages. See the documentation for
108 # a list of builtin themes.
109 html_theme = "haiku"
111 # Theme options are theme-specific and customize the look and feel of a theme
112 # further. For a list of options available for each theme, see the
113 # documentation.
114 # html_theme_options = {}
116 # Add any paths that contain custom themes here, relative to this directory.
117 # html_theme_path = []
119 # The name for this set of Sphinx documents. If None, it defaults to
120 # "<project> v<release> documentation".
121 html_title = "The Flang Compiler"
123 # A shorter title for the navigation bar. Default is the same as html_title.
124 # html_short_title = None
126 # The name of an image file (relative to this directory) to place at the top
127 # of the sidebar.
128 # html_logo = None
130 # The name of an image file (within the static path) to use as favicon of the
131 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
132 # pixels large.
133 # html_favicon = None
135 # Add any paths that contain custom static files (such as style sheets) here,
136 # relative to this directory. They are copied after the builtin static files,
137 # so a file named "default.css" will overwrite the builtin "default.css".
138 # html_static_path = []
140 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
141 # using the given strftime format.
142 html_last_updated_fmt = "%b %d, %Y"
144 # If true, SmartyPants will be used to convert quotes and dashes to
145 # typographically correct entities.
146 # html_use_smartypants = True
148 # Custom sidebar templates, maps document names to template names.
149 # html_sidebars = {}
151 # Additional templates that should be rendered to pages, maps page names to
152 # template names.
153 # html_additional_pages = {}
155 # If false, no module index is generated.
156 # html_domain_indices = True
158 # If false, no index is generated.
159 # html_use_index = True
161 # If true, the index is split into individual pages for each letter.
162 # html_split_index = False
164 # If true, links to the reST sources are added to the pages.
165 # html_show_sourcelink = True
167 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
168 # html_show_sphinx = True
170 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
171 # html_show_copyright = True
173 # If true, an OpenSearch description file will be output, and all pages will
174 # contain a <link> tag referring to it. The value of this option must be the
175 # base URL from which the finished HTML is served.
176 # html_use_opensearch = ''
178 # This is the file name suffix for HTML files (e.g. ".xhtml").
179 # html_file_suffix = None
181 # Output file base name for HTML help builder.
182 htmlhelp_basename = "Flangdoc"
184 # If true, the reST sources are included in the HTML build as
185 # _sources/name. The default is True.
186 html_copy_source = False
188 # -- Options for LaTeX output --------------------------------------------------
190 latex_elements = {
191 # The paper size ('letterpaper' or 'a4paper').
192 #'papersize': 'letterpaper',
193 # The font size ('10pt', '11pt' or '12pt').
194 #'pointsize': '10pt',
195 # Additional stuff for the LaTeX preamble.
196 #'preamble': '',
199 # Grouping the document tree into LaTeX files. List of tuples
200 # (source start file, target name, title, author, documentclass [howto/manual]).
201 latex_documents = [
202 ("Overview", "Flang.tex", "Flang Documentation", "The Flang Team", "manual"),
205 # The name of an image file (relative to this directory) to place at the top of
206 # the title page.
207 # latex_logo = None
209 # For "manual" documents, if this is true, then toplevel headings are parts,
210 # not chapters.
211 # latex_use_parts = False
213 # If true, show page references after internal links.
214 # latex_show_pagerefs = False
216 # If true, show URL addresses after external links.
217 # latex_show_urls = False
219 # Documents to append as an appendix to all manuals.
220 # latex_appendices = []
222 # If false, no module index is generated.
223 # latex_domain_indices = True
226 # -- Options for manual page output --------------------------------------------
228 # One entry per manual page. List of tuples
229 # (source start file, name, description, authors, manual section).
230 man_pages = []
232 # If true, show URL addresses after external links.
233 # man_show_urls = False
236 # -- Options for Texinfo output ------------------------------------------------
238 # Grouping the document tree into Texinfo files. List of tuples
239 # (source start file, target name, title, author,
240 # dir menu entry, description, category)
241 texinfo_documents = [
243 "Overview",
244 "Flang",
245 "Flang Documentation",
246 "The Flang Team",
247 "Flang",
248 "A Fortran front end for LLVM.",
249 "Miscellaneous",
253 # Documents to append as an appendix to all manuals.
254 # texinfo_appendices = []
256 # If false, no module index is generated.
257 # texinfo_domain_indices = True
259 # How to display URL addresses: 'footnote', 'no', or 'inline'.
260 # texinfo_show_urls = 'footnote'