-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
343 lines (236 loc) · 9.85 KB
/
Copy pathREADME.Rmd
File metadata and controls
343 lines (236 loc) · 9.85 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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# qbt ([Q]{.underline}uarto [B]{.underline}ook [T]{.underline}emplate)
<!-- badges: start -->
<!-- badges: end -->
A template repository for creating books with [Quarto](https://quarto.org/).
This template provides everything you need to quickly start writing your own book.
## Features
- 📚 **Book-ready structure** with sample chapters and references
- 🎨 **Customizable themes** supporting light and dark modes
- 🚀 **Automatic deployment** to GitHub Pages via GitHub Actions
- 🔗 **Automated link checking** to ensure all URLs are reachable
- 📄 **Multiple output formats** including HTML, PDF, EPUB, and DOCX
- 📑 **Bibliography support** with BibTeX integration
- 🔢 **Automatic numbering** of sections and cross-references
- 💅 **Custom CSS** for styling your book
- 🔍 **PR Preview** with change highlighting for pull requests
- ✅ **Automated checks** including spell checking and linting
- 🤖 **GitHub Copilot integration** with custom setup steps
- 📝 **AI-powered issue summaries** for new issues
## Quick Start
### Using this template
1. Click the "Use this template" button at the top of this repository
2. Name your new repository and create it
3. Clone your new repository to your local machine
```bash
git clone https://github.com/YOUR-USERNAME/YOUR-REPO.git
cd YOUR-REPO
```
### Prerequisites
You need to have [Quarto](https://quarto.org/) installed. Download it from [quarto.org/docs/get-started](https://quarto.org/docs/get-started/).
To verify Quarto is installed:
```bash
quarto --version
```
### Customize your book
1. **Edit `_quarto.yml`** to update:
- Book title and author
- Repository URL
- Chapter list
- Theme and styling options
2. **Modify `index.qmd`** to create your book's homepage/introduction
3. **Edit or create chapters** (`.qmd` files):
- Modify `chapter1.qmd` and `chapter2.qmd` as needed
- Create new chapters and add them to the `chapters` list in `_quarto.yml`
4. **Add references** to `references.bib` in BibTeX format
5. **Customize styling** in `styles.css`
## Building the book
### Local preview
To preview your book with live reload during development:
```bash
quarto preview
```
This will open your book in a web browser and automatically refresh when you make changes.
### Render the book
To render the complete book:
```bash
quarto render
```
The output will be generated in the `docs/` directory.
## Publishing to GitHub Pages
This template includes a GitHub Actions workflow (`.github/workflows/publish.yml`) that automatically builds and publishes your book to GitHub Pages when you push to the main branch.
### Setup steps:
1. **Enable GitHub Pages** in your repository:
- Go to Settings → Pages
- Under "Build and deployment", set Source to "GitHub Actions"
2. **Apply branch rulesets** (requires admin access):
```bash
.github/scripts/apply-rulesets.sh
```
This protects `main` against direct pushes / force-pushes / deletion,
requires a PR to merge, and gates the merge on the configured CI checks
(Spellcheck, check-chars, build-deploy). A PR is required but **zero
approvals** are needed, so authors can self-merge; raise
`required_approving_review_count` in `.github/rulesets/main.json` to require approvals. See
`.github/rulesets/README.md` for details.
3. **Push to main branch**:
```bash
git add .
git commit -m "Initial book setup"
git push origin main
```
4. **Wait for the workflow** to complete (check the Actions tab)
5. **Access your book** at: `https://YOUR-USERNAME.github.io/YOUR-REPO/`
## GitHub Actions Workflows
This template includes several automated workflows to enhance your development experience:
### 🚀 Publish Workflow (`publish.yml`)
Automatically builds and deploys your book to GitHub Pages when you push to the main branch.
**Triggers:** Push to main branch, manual dispatch
### 🔍 PR Preview Workflow (`preview.yml`)
Creates a preview deployment for pull requests with:
- Change detection and highlighting
- DOCX files with tracked changes
- Visual indicators for modified chapters
- Banner showing what changed in the PR
**Triggers:** PR opened, reopened, synchronized, closed, labeled, or unlabeled
**Labels:**
- Add `no-preview-highlights` label to disable change highlighting if it's glitchy
### ✅ Spell Check Workflow (`check-spelling.yaml`)
Runs automated spell checking on pushes and pull requests to maintain content quality.
**Triggers:** Push to main, pull requests
### 📋 Lint Project Workflow (`lint-project.yaml`)
Checks R code style and quality using the lintr package.
**Triggers:** Push to main/master, pull requests
**Note:** Only runs if your project contains R code.
### 🤖 Copilot Setup Steps (`copilot-setup-steps.yml`)
Configures the GitHub Copilot coding agent's environment with Quarto and TinyTeX.
**Triggers:** Workflow dispatch, changes to the setup file
### 📝 Issue Summary Workflow (`summary.yml`)
Automatically generates AI-powered summaries for newly opened issues.
**Triggers:** New issue opened
**Permissions required:** The `models: read` permission for AI inference
### 📚 Check Bibliography DOIs Workflow (`check-bibliography-dois.yml`)
Validates that all books and articles in bibliography files meet DOI requirements:
- Every book and article must have a DOI field
- Every DOI must resolve to a valid URL
- Reference information is checked against DOI metadata for consistency
**Triggers:** Push to main, pull requests, manual dispatch
**Note:** This helps maintain high-quality bibliographic references and ensures all citations are properly traceable.
## Project Structure
```
.
├── _quarto.yml # Main configuration file
├── index.qmd # Book homepage/introduction
├── chapter1.qmd # Sample chapter 1
├── chapter2.qmd # Sample chapter 2
├── references.qmd # References page
├── references.bib # BibTeX bibliography
├── styles.css # Custom CSS styles
├── lychee.toml # Link checker configuration
├── .gitignore # Git ignore file
├── LICENSE # CC0 1.0 Universal License
├── README.md # This file
└── .github/
├── scripts/ # Scripts for workflows
│ ├── add-home-banner.py
│ ├── check-bibliography-dois.R
│ ├── create-docx-tracked-changes.py
│ ├── detect-changed-chapters.py
│ ├── highlight-html-changes.py
│ └── inject-preview-metadata.py
└── workflows/ # GitHub Actions workflows
├── publish.yml # Build and deploy to GitHub Pages
├── preview.yml # PR preview with change highlighting
├── check-spelling.yaml # Spell checking
├── lint-project.yaml # R code linting
├── copilot-setup-steps.yml # GitHub Copilot setup
├── summary.yml # AI-powered issue summaries
├── check-links.yml # URL reachability checker workflow
└── check-bibliography-dois.yml # Bibliography DOI validation
```
## Automated Workflows
This template includes two GitHub Actions workflows:
### Publishing Workflow (`publish.yml`)
Automatically builds and deploys your book to GitHub Pages when you push to the main branch.
### Link Checker Workflow (`check-links.yml`)
Automatically checks that all URLs in your book are reachable:
- **Runs on**: Push to main, pull requests, weekly schedule (Mondays at 9:00 UTC), and manual trigger
- **Checks**: All links in `.qmd`, `.md`, and `.html` files
- **Reports**: Workflow fails if broken links are detected. Check the workflow logs for details on which links are broken.
- **Configuration**: Customize behavior in `lychee.toml`
- **Manual override**: Add the `links checked by hand` label to a PR to skip the automated link check
To manually trigger the link checker:
1. Go to the Actions tab in your repository
2. Select "Check Links" workflow
3. Click "Run workflow"
## Writing Content
Quarto uses markdown with extensions. Here are some quick tips:
### Headings
```markdown
# Chapter Title
## Section
### Subsection
```
### Code blocks
````markdown
```python
print("Hello, World!")
```
````
### Math equations
```markdown
Inline: $E = mc^2$
Display:
$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$
```
### Citations
Reference a citation: `@citationkey`
### Cross-references
Reference figures, tables, and sections using labels:
```markdown
See @fig-example for details.
```
For more details, see the [Quarto documentation](https://quarto.org/docs/guide/).
## Customization
### Changing themes
Edit the `format.html.theme` section in `_quarto.yml`:
```yaml
format:
html:
theme:
light: cosmo # Try: cosmo, flatly, litera, minty, etc.
dark: darkly # Try: darkly, cyborg, slate, superhero, etc.
```
### Adding chapters
1. Create a new `.qmd` file (e.g., `chapter3.qmd`)
2. Add it to the `chapters` list in `_quarto.yml`:
```yaml
book:
chapters:
- index.qmd
- chapter1.qmd
- chapter2.qmd
- chapter3.qmd # Your new chapter
- references.qmd
```
### Custom CSS
Add your custom styles to `styles.css`. These will override the default theme styles.
## License
This template is released under the [CC0 1.0 Universal License](LICENSE), which means you can freely use, modify, and distribute it without any restrictions.
## Support
- [Quarto Documentation](https://quarto.org/docs/guide/)
- [Quarto Community](https://github.com/quarto-dev/quarto-cli/discussions)
- [GitHub Pages Documentation](https://docs.github.com/en/pages)
## Contributing
Feel free to open issues or submit pull requests to improve this template!