Skip to content

Commit 3704da2

Browse files
committed
audit fix and rebuild after merge
1 parent 5e7d7f0 commit 3704da2

File tree

7 files changed

+902
-814
lines changed

7 files changed

+902
-814
lines changed

dist/plugin/math.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugin/math.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const M = () => {
88
{ left: "\\(", right: "\\)", display: !1 },
99
{ left: "\\[", right: "\\]", display: !0 }
1010
],
11-
ignoredTags: ["script", "noscript", "style", "textarea", "pre"]
11+
ignoredTags: ["script", "noscript", "style", "textarea", "pre", "code"]
1212
};
1313
const r = (t) => {
1414
let e = document.createElement("link");
@@ -42,7 +42,7 @@ const M = () => {
4242
messageStyle: "none",
4343
tex2jax: {
4444
inlineMath: [["$", "$"], ["\\(", "\\)"]],
45-
skipTags: ["script", "noscript", "style", "textarea", "pre"]
45+
skipTags: ["script", "noscript", "style", "textarea", "pre", "code"]
4646
},
4747
skipStartupTypeset: !0
4848
};
@@ -74,7 +74,7 @@ const M = () => {
7474
inlineMath: [["$", "$"], ["\\(", "\\)"]]
7575
},
7676
options: {
77-
skipHtmlTags: ["script", "noscript", "style", "textarea", "pre"]
77+
skipHtmlTags: ["script", "noscript", "style", "textarea", "pre", "code"]
7878
},
7979
startup: {
8080
ready: () => {

dist/reveal.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/reveal.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,13 @@ declare interface Config {
3232
maxScale?: number;
3333
/**
3434
* Display presentation control arrows
35+
* - true: Display controls in all views
36+
* - false: Hide controls in all views
37+
* - 'speaker-only': Display controls only in the speaker view
3538
*
3639
* @defaultValue true
3740
*/
38-
controls?: boolean;
41+
controls?: boolean | 'speaker-only';
3942
/**
4043
* Help the user learn the controls by providing hints, for example by
4144
* bouncing the down arrow when they first encounter a vertical slide

0 commit comments

Comments
 (0)