Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/document-formatting.yml
12921 views
1
- name: indenting
2
schema:
3
maybeArrayOf:
4
string:
5
completions:
6
- yes
7
- no
8
- none
9
- small
10
- medium
11
- big
12
- first
13
- next
14
- odd
15
- even
16
- normal
17
tags:
18
formats: [context]
19
description:
20
short: Set the indentation of paragraphs with one or more options.
21
long: |
22
Set the indentation of paragraphs with one or more options.
23
24
See [ConTeXt Indentation](https://wiki.contextgarden.net/Indentation) for additional information.
25
26
- name: adjusting
27
schema:
28
enum: [l, r, c, b]
29
tags:
30
formats: [man]
31
description: Adjusts text to the left, right, center, or both margins (`l`, `r`, `c`, or `b`).
32
33
- name: hyphenate
34
schema: boolean
35
default: true
36
tags:
37
formats: [man]
38
description:
39
short: Whether to hyphenate text at line breaks even in words that do not contain hyphens.
40
long: |
41
Whether to hyphenate text at line breaks even in words that do not contain
42
hyphens if it is necessary to do so to lay out words on a line without excessive spacing
43
44
- name: list-tables
45
schema: boolean
46
default: false
47
tags:
48
formats: [rst]
49
description: If true, tables are formatted as RST list tables.
50
51
- name: split-level
52
tags:
53
formats: [$epub-all, chunkedhtml]
54
schema: number
55
default: 1
56
description:
57
short: |
58
Specify the heading level at which to split the EPUB into separate
59
chapter files.
60
long: |
61
Specify the heading level at which to split the EPUB into separate
62
chapter files. The default is to split into chapters at level-1
63
headings. This option only affects the internal composition of the
64
EPUB, not the way chapters and sections are displayed to users. Some
65
readers may be slow if the chapter files are too large, so for large
66
documents with few level-1 headings, one might want to use a chapter
67
level of 2 or 3.
68
69