Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/document-reveal-layout.yml
12921 views
1
- name: auto-stretch
2
tags:
3
formats: [revealjs]
4
schema: boolean
5
default: true
6
description: "For slides with a single top-level image, automatically stretch it to fill the slide."
7
8
- name: width
9
tags:
10
formats: [revealjs]
11
schema:
12
anyOf: [number, string]
13
default: 1050
14
description:
15
short: "The 'normal' width of the presentation"
16
long: |
17
The "normal" width of the presentation, aspect ratio will
18
be preserved when the presentation is scaled to fit different
19
resolutions. Can be specified using percentage units.
20
21
- name: height
22
tags:
23
formats: [revealjs]
24
schema:
25
anyOf: [number, string]
26
default: 700
27
description:
28
short: "The 'normal' height of the presentation"
29
long: |
30
The "normal" height of the presentation, aspect ratio will
31
be preserved when the presentation is scaled to fit different
32
resolutions. Can be specified using percentage units.
33
34
- name: min-scale
35
tags:
36
formats: [revealjs]
37
schema: number
38
default: 0.2
39
description: "Bounds for smallest possible scale to apply to content"
40
41
- name: max-scale
42
tags:
43
formats: [revealjs]
44
schema: number
45
default: 2.0
46
description: "Bounds for largest possible scale to apply to content"
47
48
- name: center
49
tags:
50
formats: [revealjs]
51
schema: boolean
52
default: false
53
description: "Vertical centering of slides"
54
55
- name: disable-layout
56
tags:
57
formats: [revealjs]
58
schema: boolean
59
default: false
60
description: |
61
Disables the default reveal.js slide layout (scaling and centering)
62
63
- name: code-block-height
64
tags:
65
formats: [revealjs]
66
schema: string
67
default: "500px"
68
description: |
69
Sets the maximum height for source code blocks that appear in the presentation.
70
71