I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
3.8 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>What is Emacs?</title>
  6. <meta name="author" content="(Christopher James Hayward)"/>
  7. <style type="text/css">
  8. .underline { text-decoration: underline; }
  9. </style>
  10. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js/dist/reveal.css"/>
  11. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js/dist/theme/serif.css" id="theme"/>
  12. <!-- If the query includes 'print-pdf', include the PDF print sheet -->
  13. <script>
  14. if( window.location.search.match( /print-pdf/gi ) ) {
  15. var link = document.createElement( 'link' );
  16. link.rel = 'stylesheet';
  17. link.type = 'text/css';
  18. link.href = 'https://cdn.jsdelivr.net/npm/reveal.js/css/print/pdf.css';
  19. document.getElementsByTagName( 'head' )[0].appendChild( link );
  20. }
  21. </script>
  22. </head>
  23. <body>
  24. <div class="reveal">
  25. <div class="slides">
  26. <section>
  27. <section id="slide-org12566e1">
  28. <h2 id="org12566e1">What is Emacs?</h2>
  29. </section>
  30. <section id="slide-org12566e1-split">
  31. <div id="orga34d8fc" class="figure">
  32. <p><img src="../images/what-is-emacs-teaser.png" alt="what-is-emacs-teaser.png" />
  33. </p>
  34. </div>
  35. </section>
  36. <section id="slide-org12566e1-split">
  37. <p>
  38. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp programming language with extensions to support text editing<sup><a id="fnr.1" class="footref" href="#fn.1">1</a></sup>.
  39. </p>
  40. <ul>
  41. <li>Highly customizable</li>
  42. <li>Complete built-in documentation</li>
  43. <li>Wide range of functionality beyond editing</li>
  44. </ul>
  45. </section>
  46. <section id="slide-orgc4b5da0">
  47. <h3 id="orgc4b5da0">Highly customizable</h3>
  48. <p>
  49. <img src="../images/what-is-emacs-customizable.gif" alt="what-is-emacs-customizable.gif" /><sup><a id="fnr.2" class="footref" href="#fn.2">2</a></sup>
  50. </p>
  51. </section>
  52. <section id="slide-org4cd5d3a">
  53. <h3 id="org4cd5d3a">Complete built-in documentation</h3>
  54. <p>
  55. <img src="../images/what-is-emacs-documentation.gif" alt="what-is-emacs-documentation.gif" /><sup><a id="fnr.2.100" class="footref" href="#fn.2">2</a></sup>
  56. </p>
  57. </section>
  58. <section id="slide-org5521874">
  59. <h3 id="org5521874">Wide range of functionality beyond editing</h3>
  60. <p>
  61. <img src="../images/2021-02-13-example-roam.png" alt="2021-02-13-example-roam.png" /><sup><a id="fnr.2.100" class="footref" href="#fn.2">2</a></sup>
  62. </p>
  63. </section>
  64. </section>
  65. <section>
  66. <section id="slide-orgec274dd">
  67. <h2 id="orgec274dd">Resources</h2>
  68. <ul>
  69. <li><a href="https://gnu.org/software/emacs/">https://gnu.org/software/emacs/</a></li>
  70. <li><a href="https://github.com/chayward1/dotfiles">https://github.com/chayward1/dotfiles</a></li>
  71. </ul>
  72. </section>
  73. </section>
  74. </div>
  75. </div>
  76. <script src="https://cdn.jsdelivr.net/npm/reveal.js/dist/reveal.js"></script>
  77. <script>
  78. // Full list of configuration options available here:
  79. // https://github.com/hakimel/reveal.js#configuration
  80. Reveal.initialize({
  81. multiplex: {
  82. secret: '', // null if client
  83. id: '', // id, obtained from socket.io server
  84. url: '' // Location of socket.io server
  85. },
  86. // Optional libraries used to extend on reveal.js
  87. dependencies: [
  88. { src: 'https://cdn.jsdelivr.net/npm/reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
  89. { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  90. { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  91. { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
  92. { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }]
  93. });
  94. </script>
  95. </body>
  96. </html>