doc: Group linkcheck options together in conf.py
Group all sections related to linkcheck target together. Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
This commit is contained in:
parent
b3a52f4882
commit
d3487c48bf
1 changed files with 4 additions and 6 deletions
10
doc/conf.py
10
doc/conf.py
|
@ -200,12 +200,6 @@ latex_documents = [
|
||||||
("index-tex", "zephyr.tex", "Zephyr Project Documentation", author, "manual"),
|
("index-tex", "zephyr.tex", "Zephyr Project Documentation", author, "manual"),
|
||||||
]
|
]
|
||||||
|
|
||||||
# -- Options for linkcheck ------------------------------------------------
|
|
||||||
|
|
||||||
linkcheck_ignore = [
|
|
||||||
r"https://github.com/zephyrproject-rtos/zephyr/issues/.*"
|
|
||||||
]
|
|
||||||
|
|
||||||
# -- Options for zephyr.doxyrunner plugin ---------------------------------
|
# -- Options for zephyr.doxyrunner plugin ---------------------------------
|
||||||
|
|
||||||
doxyrunner_doxygen = os.environ.get("DOXYGEN_EXECUTABLE", "doxygen")
|
doxyrunner_doxygen = os.environ.get("DOXYGEN_EXECUTABLE", "doxygen")
|
||||||
|
@ -320,6 +314,10 @@ copybutton_prompt_is_regexp = True
|
||||||
|
|
||||||
# -- Linkcheck options ----------------------------------------------------
|
# -- Linkcheck options ----------------------------------------------------
|
||||||
|
|
||||||
|
linkcheck_ignore = [
|
||||||
|
r"https://github.com/zephyrproject-rtos/zephyr/issues/.*"
|
||||||
|
]
|
||||||
|
|
||||||
extlinks = {
|
extlinks = {
|
||||||
"github": ("https://github.com/zephyrproject-rtos/zephyr/issues/%s", "GitHub #%s"),
|
"github": ("https://github.com/zephyrproject-rtos/zephyr/issues/%s", "GitHub #%s"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue