forked from TRESPADERNE/fund_prog_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
53 lines (42 loc) · 1.92 KB
/
_config.yml
File metadata and controls
53 lines (42 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Book settings
# Learn more at https://jupyterbook.org/customize/config.html
title: Fundamentos de Programación en Python
author: "" # Félix Miguel Trespaderne / Rogelio Mazaeda Echevarría
logo: logo.png
copyright: "Félix Miguel Trespaderne / Rogelio Mazaeda Echevarría"
exclude_patterns : [_build, Thumbs.db, .DS_Store, "**.md", "**.ipynb_checkpoints"]
# Auto-exclude files not in the toc
only_build_toc_files : true
# Force re-execution of notebooks on each build.
# See https://jupyterbook.org/content/execute.html
execute:
execute_notebooks: force # cache
# Define the name of the latex output file for PDF builds
latex:
latex_documents:
targetname: book.tex
# Information about where the book exists on the web
repository:
url: https://github.com/TRESPADERNE/fund_prog_python # Online location of your book
branch: master # Which branch of the repository should be used when creating links (optional)
#######################################################################################
# Parse and render settings
parse:
myst_enable_extensions : [
"amsmath",
"colon_fence",
"deflist",
"dollarmath",
"html_admonition",
"html_image",
"linkify",
"replacements",
"smartquotes",
"substitution"
]
# Add GitHub buttons to your book
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
sphinx:
config:
html_theme_options : {"use_download_button": False, "repository_url": "https://github.com/TRESPADERNE/fund_prog_python", "use_repository_button": True, "home_page_in_toc": True,
"extra_footer": <div> <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png"></a>All content on this site (unless otherwise specified) is licensed under the <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0 license</a></div>,}