Created
September 21, 2023 03:58
-
-
Save mlomb/ca19ccd8785ff4bd9e3f193467954ed2 to your computer and use it in GitHub Desktop.
Revisions
-
mlomb created this gist
Sep 21, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title>Slides</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/theme/white.css"> </head> <body> <div class="reveal"> <div class="slides"> <section data-markdown> # A ## B ### C </section> </div> </div> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.js"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/plugin/highlight/highlight.js"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/plugin/markdown/markdown.js"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/plugin/math/math.js"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/plugin/search/search.js"></script> <script> Reveal.initialize({ hash: true, plugins: [ RevealHighlight, RevealMarkdown, RevealMath, RevealSearch ], slideNumber: "c/t" }); </script> </body> </html>