1
+ # ######################################################################################
2
+ # A default configuration that will be loaded for all jupyter books
3
+ # Users are expected to override these values in their own `_config.yml` file.
4
+ # This is also the "master list" of all allowed keys and values.
5
+
6
+ # ######################################################################################
7
+ # Book settings
8
+ title : Free and Open Machine Learning # The title of the book. Will be placed in the left navbar.
9
+ author : ' <a href="https://nocomplexity.com/">Maikel Mardjan (nocomplexity.com)</a>' # The author of the book
10
+ copyright : ' 2018-2021- Maikel Mardjan -Business Management Support Foundation (bm-support.org' # Copyright year to be placed in the footer
11
+ logo : " images/nocxbanner.png" # A path to the book logo
12
+ # Patterns to skip when building the book. Can be glob-style (e.g. "*skip.ipynb")
13
+ exclude_patterns : [_build, Thumbs.db, .DS_Store, "**.ipynb_checkpoints","*.rst","conf.py"]
14
+ # Auto-exclude files not in the toc
15
+ only_build_toc_files : false
16
+
17
+ # ######################################################################################
18
+ # Execution settings
19
+ execute :
20
+ execute_notebooks : auto # Whether to execute notebooks at build time. Must be one of ("auto", "force", "cache", "off")
21
+ cache : " " # A path to the jupyter cache that will be used to store execution artifacs. Defaults to `_build/.jupyter_cache/`
22
+ exclude_patterns : [] # A list of patterns to *skip* in execution (e.g. a notebook that takes a really long time)
23
+ timeout : 30 # The maximum time (in seconds) each notebook cell is allowed to run.
24
+ run_in_temp : false # If `True`, then a temporary directory will be created and used as the command working directory (cwd),
25
+ # otherwise the notebook's parent directory will be the cwd.
26
+ allow_errors : false # If `False`, when a code cell raises an error the execution is stopped, otherwise all cells are always run.
27
+ stderr_output : show # One of 'show', 'remove', 'remove-warn', 'warn', 'error', 'severe'
28
+
29
+ # ######################################################################################
30
+ # Parse and render settings
31
+ parse :
32
+ myst_extended_syntax : false # enable MyST extended syntax support (see documents for details)
33
+ myst_url_schemes : [mailto, http, https] # URI schemes that will be recognised as external URLs in Markdown links
34
+
35
+ # ######################################################################################
36
+ # HTML-specific settings
37
+ html :
38
+ favicon : " " # A path to a favicon image
39
+ use_edit_page_button : true # Whether to add an "edit this page" button to pages. If `true`, repository information in repository: must be filled in
40
+ use_repository_button : true # Whether to add a link to your repository button
41
+ use_issues_button : true # Whether to add an "open an issue" button
42
+ extra_navbar : ' <a href="https://bm-support.org/">ROI Now!</a>' # Will be displayed underneath the left navbar.
43
+
44
+ extra_footer : ' <p><a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a> © Copyright 2018-2021, BM-Support.org - Maikel Mardjan. This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.</p>'
45
+
46
+ google_analytics_id : " " # A GA id that can be used to track book views.
47
+ home_page_in_navbar : true # Whether to include your home page in the left Navigation Bar
48
+ baseurl : " https://nocomplexity.com/documents/fossml/" # The base URL where your book will be hosted. Used for creating image previews and social links. e.g.: https://mypage.com/mybook/
49
+ comments :
50
+ hypothesis : false
51
+ utterances : false
52
+
53
+ # ######################################################################################
54
+ # LaTeX-specific settings
55
+ latex :
56
+ latex_engine : pdflatex # one of 'pdflatex', 'xelatex' (recommended for unicode), 'luatex', 'platex', 'uplatex'
57
+
58
+ # ######################################################################################
59
+ # Launch button settings
60
+ launch_buttons :
61
+ notebook_interface : classic # The interface interactive links will activate ["classic", "jupyterlab"]
62
+ binderhub_url : https://mybinder.org # The URL of the BinderHub (e.g., https://mybinder.org)
63
+ jupyterhub_url : " " # The URL of the JupyterHub (e.g., https://datahub.berkeley.edu)
64
+ thebe : false # Add a thebe button to pages (requires the repository to run on Binder)
65
+ colab_url : " " # The URL of Google Colab (https://colab.research.google.com)
66
+
67
+ repository :
68
+ url : https://github.com/nocomplexity/FreeAndOpenMachineLearning # The URL to your book's repository
69
+ path_to_book : " " # A path to your book's folder, relative to the repository root.
70
+ branch : master # Which branch of the repository should be used when creating links
71
+
72
+ # ######################################################################################
73
+ # Advanced and power-user settings
74
+ sphinx :
75
+ extra_extensions : # A list of extra extensions to load by Sphinx (added to those already used by JB).
76
+ local_extensions : # A list of local extensions to load by sphinx specified by "name: path" items
77
+ config :
78
+ html_show_copyright : false
79
+
80
+
0 commit comments