Skip to content

Commit

Permalink
audit fix and rebuild after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Feb 18, 2025
1 parent 5e7d7f0 commit 3704da2
Show file tree
Hide file tree
Showing 7 changed files with 902 additions and 814 deletions.
2 changes: 1 addition & 1 deletion dist/plugin/math.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/plugin/math.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const M = () => {
{ left: "\\(", right: "\\)", display: !1 },
{ left: "\\[", right: "\\]", display: !0 }
],
ignoredTags: ["script", "noscript", "style", "textarea", "pre"]
ignoredTags: ["script", "noscript", "style", "textarea", "pre", "code"]
};
const r = (t) => {
let e = document.createElement("link");
Expand Down Expand Up @@ -42,7 +42,7 @@ const M = () => {
messageStyle: "none",
tex2jax: {
inlineMath: [["$", "$"], ["\\(", "\\)"]],
skipTags: ["script", "noscript", "style", "textarea", "pre"]
skipTags: ["script", "noscript", "style", "textarea", "pre", "code"]
},
skipStartupTypeset: !0
};
Expand Down Expand Up @@ -74,7 +74,7 @@ const M = () => {
inlineMath: [["$", "$"], ["\\(", "\\)"]]
},
options: {
skipHtmlTags: ["script", "noscript", "style", "textarea", "pre"]
skipHtmlTags: ["script", "noscript", "style", "textarea", "pre", "code"]
},
startup: {
ready: () => {
Expand Down
2 changes: 1 addition & 1 deletion dist/reveal.css

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion dist/reveal.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@ declare interface Config {
maxScale?: number;
/**
* Display presentation control arrows
* - true: Display controls in all views
* - false: Hide controls in all views
* - 'speaker-only': Display controls only in the speaker view
*
* @defaultValue true
*/
controls?: boolean;
controls?: boolean | 'speaker-only';
/**
* Help the user learn the controls by providing hints, for example by
* bouncing the down arrow when they first encounter a vertical slide
Expand Down
Loading

0 comments on commit 3704da2

Please sign in to comment.