2021-04-13 20:29:55 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# English Language RTD & Sphinx config file
|
|
|
|
#
|
|
|
|
|
|
|
|
# General information about the project.
|
2021-04-14 17:57:42 +02:00
|
|
|
project = u'esp-modem'
|
2021-04-13 20:29:55 +02:00
|
|
|
copyright = u'2016 - 2021, Espressif Systems (Shanghai) Co., Ltd'
|
|
|
|
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
language = 'en'
|
|
|
|
|
2021-11-12 12:01:34 +01:00
|
|
|
extensions = ['breathe', 'recommonmark']
|
|
|
|
|
2021-04-13 20:29:55 +02:00
|
|
|
breathe_projects = {'esp_modem': 'xml'}
|
|
|
|
|
2022-10-11 16:31:57 +02:00
|
|
|
breathe_default_project = 'esp_modem'
|
2021-04-13 20:29:55 +02:00
|
|
|
|
|
|
|
source_suffix = ['.rst', '.md']
|
|
|
|
|
2022-10-11 16:31:57 +02:00
|
|
|
source_parsers = {
|
|
|
|
'.md': 'recommonmark.parser.CommonMarkParser',
|
|
|
|
}
|