-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_quarto.yml
168 lines (142 loc) · 3.91 KB
/
_quarto.yml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
project:
type: book
output-dir: docs
# output-dir: pdfs
preview:
port: 7771
browser: false
resources:
- "data/*.mp3"
render:
- "*.qmd"
- "!*.Rmd"
- "!to_do.qmd"
lang: ko-KR
# ---------------------------------- #
book:
title: "챗GPT 코딩"
reader-mode: true
subtitle: "인공지능(LLM)과 동료(Git/GitHub)와 함께 하는 프로그래밍"
page-footer:
left: |
챗GPT 쿼토 책은 소프트웨어 카펜트리 "Git 버전제어"를 번역한 것이 포함되어 있습니다.
right: |
순수하게 <a href="https://quarto.org/">쿼토(Quarto)</a>로 제작되었습니다.
cover-image: images/book_cover.jpg
favicon: images/logo.png
site-url: https://r2bit.com/gpt-coding/
repo-url: https://github.com/bit2r/gpt-coding/
repo-branch: main
repo-actions: [edit, issue]
google-analytics: "UA-229551680-1"
author:
- name: "이광춘"
affiliations: "공익법인 한국 R 사용자회"
date: last-modified
date-format: "YYYY년 MM월 DD일"
# ---------------------------------- #
chapters:
# - acknowledgments.qmd
- index.qmd
- part: "**1부** 프로그래밍" # OK
chapters:
- 01-intro.qmd # A\ + idx
- 02-var.qmd # A\ + idx
- 03-cont.qmd # A\ + idx
- 04-func.qmd # A\ + idx
- 05-loop.qmd # A\ + idx
- part: "**2부** 자료구조"
chapters:
- 06-string.qmd # A\ + idx
- 07-file.qmd # A\ + idx
- 08-list.qmd # A\ + idx
- 09-dictionaries.qmd # A\ + idx You can't use `macro parameter character #'
- A-dataframe.qmd # A\ + idx
- part: "**3부** 버전제어와 협업" # OK
chapters:
- git-basics.qmd # A\ + idx
- git-setup-create.qmd # A\ + idx
- git-change.qmd # A\ + idx
- git-history.qmd # A\ + idx
- git-ignore.qmd # A\ + idx
- git-github.qmd # A\ + idx +layout
- git-open.qmd # A\ + idx
- git-conflict.qmd # A\ + idx +layout
- git-ide.qmd # A\ + idx +layout
- part: "**4부** 분야별 코딩" # OK
chapters:
- tool-regex.qmd # A\ + idx + layout
- tool-network.qmd # A\ + idx + layout
- tool-web.qmd # A\ + idx + layout
- tool-database.qmd # A\ + idx + layout
- tool-make.qmd # A\ + idx + layout
- tool-viz.qmd # A\ + idx + layout
- tool-gpt.qmd
- references.qmd #
# ---------------------------------- #
format:
html:
mermaid:
theme: neutral # https://quarto.org/docs/authoring/diagrams.html#mermaid-theming
theme:
light: [cosmo, r2bit.scss]
# dark: [yeti, r2bit.scss]
number-depth: 3
number-sections: true
colorlinks: true
# cite-method: biblatex
code-overflow: wrap
code-link: true
author-meta: "이광춘"
include-in-header: "plausible.html"
callout-appearance: simple
# 마크다운 표 캡션 위치
tbl-cap-location: bottom
# ---------------------------------- #
filters:
- lightbox
- fontawesome
- include-code-files
- fancy-text
- webr
- pyodide
lightbox: auto
webr:
packages:
- "stringr"
- "readr"
- "purrr"
- "httr"
- "curl"
- "rvest"
- "fs"
- "ggplot2"
- "palmerpenguins"
pyodide:
packages:
- "urllib"
code-annotations: hover
bibliography: references.bib
link-citations: false
# ---------------------------------- #
glossary:
path: glossary.yml
popup: click
show: true
# ---------------------------------- #
engine: knitr
knitr:
opts_chunk:
message: false
warning: false
collapse: true
code-overflow: code-overflow
fig-crop: false
comment: "#>"
R.options:
knitr.graphics.auto_pdf: true
editor_options:
chunk_output_type: console
editor:
markdown:
wrap: 72