Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/format/reveal/constants.ts
6451 views
1
/*
2
* constants.ts
3
*
4
* Copyright (C) 2022 Posit Software, PBC
5
*/
6
7
export const kRevealJsUrl = "revealjs-url";
8
export const kRevealJsConfig = "revealjs-config";
9
10
export const kSlideLogo = "logo";
11
export const kSlideFooter = "footer";
12
export const kHashType = "hash-type";
13
export const kScrollable = "scrollable";
14
export const kSmaller = "smaller";
15
export const kCenter = "center";
16
export const kCenterTitleSlide = "center-title-slide";
17
export const kControlsAuto = "controlsAuto";
18
export const kPreviewLinksAuto = "previewLinksAuto";
19
export const kPdfMaxPagesPerSlide = "pdfMaxPagesPerSlide";
20
export const kPdfSeparateFragments = "pdfSeparateFragments";
21
export const kAutoAnimateEasing = "autoAnimateEasing";
22
export const kAutoAnimateDuration = "autoAnimateDuration";
23
export const kAutoAnimateUnmatched = "autoAnimateUnmatched";
24
export const kAutoStretch = "auto-stretch";
25
export const kCodeBlockHeight = "code-block-height";
26
export const kJumpToSlide = "jumpToSlide";
27
// scroll view configurations - https://revealjs.com/scroll-view/
28
export const kScrollView = "scroll-view";
29
export const kView = "view";
30
export const kScrollProgress = "scrollProgress";
31
export const kScrollSnap = "scrollSnap";
32
export const kScrollActivationWidth = "scrollActivationWidth";
33
export const kScrollLayout = "scrollLayout";
34
35