Skip to content

Commit d35ec59

Browse files
committed
Edits
1 parent ee5ca05 commit d35ec59

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

docs/books/book-structure.qmd

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Rendering options that should apply to all chapters and all formats are listed a
3333
bibliography: references.bib
3434
```
3535

36-
Rendering options that should apply to all chapters for specific formats are listed under `formats`:
36+
Rendering options that should apply to all chapters for specific formats are listed under `format`:
3737

3838
``` {.yaml filename="_quarto.yml"}
3939
format:
@@ -202,9 +202,6 @@ You can include appendices by adding an `appendices` key to your `book` config.
202202

203203
```{.yaml filename="_quarto.yml"}
204204
book:
205-
title: "mybook"
206-
author: "Jane Doe"
207-
date: "5/9/2021"
208205
chapters:
209206
- index.qmd
210207
- intro.qmd

docs/websites/_footer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
Use the `page-footer` option to provide a common footer for all of the pages in a {{< meta project-type >}}. The simplest footer just provides text that will be centered and displayed in a lighter typeface:
44

5-
``` yaml
5+
```{.yaml filename="_quarto.yml"}
66
{{< meta project-type >}}:
77
page-footer: "Copyright 2021, Norah Jones"
88
```
99

1010
You can alternatively target the `left`, `right`, and `center` regions of the footer individually:
1111

12-
``` yaml
12+
```{.yaml filename="_quarto.yml"}
1313
{{< meta project-type >}}:
1414
page-footer:
1515
left: "Copyright 2021, Norah Jones"
@@ -24,15 +24,15 @@ Note for the `right` region of the footer we included navigational items for Git
2424

2525
You can use the `background`, `foreground`, and `border` options to further control the appearance of the footer. By default, the footer has no background color and a top border. To eliminate the border you would do this:
2626

27-
``` yaml
27+
```{.yaml filename="_quarto.yml"}
2828
{{< meta project-type >}}:
2929
page-footer:
3030
border: false
3131
```
3232

3333
To use a light background (e.g. to match a navigation bar) you would do this:
3434

35-
``` yaml
35+
```{.yaml filename="_quarto.yml"}
3636
{{< meta project-type >}}:
3737
page-footer:
3838
background: light

docs/websites/_page-navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
If you have a {{< meta project-type >}} with several pages in a section or subsection, it is often convenient to offer the user the ability to navigate to the next page (or previous page) at the bottom of the page that they've just finished reading. You can enable this using:
44

5-
``` yaml
5+
```{.yaml filename="_quarto.yml"}
66
{{< meta project-type >}}:
77
page-navigation: true
88
```

0 commit comments

Comments
 (0)