-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_quarto.yml
More file actions
101 lines (97 loc) · 2.46 KB
/
_quarto.yml
File metadata and controls
101 lines (97 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
project:
type: book
output-dir: _book
resources:
- tools/**
book:
title: "Code Python, Consult AI: Python Fundamentals for the AI Era"
cover-image: cover.png
favicon: favicon.svg
author: "Michael Borck"
license: "CC BY-SA 4.0 (content), MIT (code examples)"
chapters:
- index.qmd
- copyright.qmd
- chapters/python_in_the_age_of_ai.qmd
- chapters/getting_started.qmd
- chapters/values.qmd
- chapters/variables.qmd
- chapters/output.qmd
- chapters/input.qmd
- chapters/operators.qmd
- chapters/using_functions.qmd
- chapters/creating_functions.qmd
- chapters/making_decisions.qmd
- chapters/lists.qmd
- chapters/going_loopy.qmd
- chapters/strings.qmd
- chapters/dictionaries.qmd
- chapters/files.qmd
- chapters/errors_and_exceptions.qmd
- chapters/debugging.qmd
- chapters/testing.qmd
- chapters/modules_and_packages.qmd
- chapters/orientating_your_objects.qmd
- chapters/working_with_ai_assistants.qmd
- chapters/python_ai_integration.qmd
- acknowledgments.qmd
- about-author.qmd
appendices:
- appendices/setting_up_python.qmd
repo-url: https://github.com/michael-borck/code-python-consult-ai
repo-actions: [edit, issue]
other-links:
- text: Download PDF
icon: file-pdf
href: code-python-consult-ai.pdf
- text: Download EPUB
icon: book
href: code-python-consult-ai.epub
- text: Download llm.txt
icon: robot
href: llm.txt
- text: GitHub
icon: github
href: https://github.com/michael-borck/code-python-consult-ai
- text: DeepWiki
icon: search
href: https://deepwiki.com/michael-borck/code-python-consult-ai
- text: All Books
icon: collection
href: https://books.borck.education
bibliography: references.bib
format:
html:
theme:
light: cosmo
dark: darkly
include-after-body: chatbot.html
code-copy: true
code-tools: true
highlight-style: github
toc: true
toc-depth: 3
number-sections: true
pdf:
documentclass: book
toc: true
toc-depth: 1
number-sections: true
hyperrefoptions: draft
geometry:
- paperwidth=7in
- paperheight=10in
- inner=1in
- outer=0.75in
- top=0.75in
- bottom=0.75in
include-in-header: pdf-header.tex
include-before-body:
- copyright-page.tex
epub:
toc: true
toc-depth: 1
css: epub-styles.css
execute:
enabled: false
freeze: auto