Path: blob/main/src/resources/formats/revealjs/pandoc/reveal.patch
12923 views
--- revealjs.template 2022-03-24 09:03:15.000000000 -04001+++ template.revealjs 2022-03-24 09:33:30.000000000 -04002@@ -2,7 +2,12 @@3<html$if(lang)$ lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$>4<head>5<meta charset="utf-8">6- <meta name="generator" content="pandoc">7+$if(quarto-version)$8+ <meta name="generator" content="quarto-$quarto-version$" />9+$else$10+ <meta name="generator" content="quarto" />11+$endif$12+13$for(author-meta)$14<meta name="author" content="$author-meta$">15$endfor$16@@ -19,9 +24,6 @@17<link rel="stylesheet" href="$revealjs-url$/dist/reset.css">18<link rel="stylesheet" href="$revealjs-url$/dist/reveal.css">19<style>20- .reveal .sourceCode { /* see #7635 */21- overflow: visible;22- }23$styles.html()$24</style>25$if(theme)$26@@ -78,6 +80,7 @@27</div>28</div>2930+ <script>window.backupDefine = window.define; window.define = undefined;</script>31<script src="$revealjs-url$/dist/reveal.js"></script>3233<!-- reveal.js plugins -->34@@ -87,12 +90,13 @@35$if(mathjax)$36<script src="$revealjs-url$/plugin/math/math.js"></script>37$endif$38+ <script>window.define = window.backupDefine; window.backupDefine = undefined;</script>3940<script>4142// Full list of configuration options available at:43// https://revealjs.com/config/44- Reveal.initialize({45+ Reveal.initialize({46// Display controls in the bottom right corner47controls: $controls$,48495051