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.
|
|
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>What is Emacs?</title> <meta name="author" content="(Christopher James Hayward)"/> <style type="text/css"> .underline { text-decoration: underline; } </style> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js/dist/reveal.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js/dist/theme/serif.css" id="theme"/>
<!-- If the query includes 'print-pdf', include the PDF print sheet --> <script> if( window.location.search.match( /print-pdf/gi ) ) { var link = document.createElement( 'link' ); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = 'https://cdn.jsdelivr.net/npm/reveal.js/css/print/pdf.css'; document.getElementsByTagName( 'head' )[0].appendChild( link ); } </script> </head> <body> <div class="reveal"> <div class="slides">
<section> <section id="slide-org12566e1"> <h2 id="org12566e1">What is Emacs?</h2> </section> <section id="slide-org12566e1-split">
<div id="orga34d8fc" class="figure"> <p><img src="../images/what-is-emacs-teaser.png" alt="what-is-emacs-teaser.png" /> </p> </div>
</section> <section id="slide-org12566e1-split">
<p> 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>. </p>
<ul> <li>Highly customizable</li> <li>Complete built-in documentation</li> <li>Wide range of functionality beyond editing</li>
</ul>
</section> <section id="slide-orgc4b5da0"> <h3 id="orgc4b5da0">Highly customizable</h3> <p> <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> </p>
</section> <section id="slide-org4cd5d3a"> <h3 id="org4cd5d3a">Complete built-in documentation</h3> <p> <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> </p>
</section> <section id="slide-org5521874"> <h3 id="org5521874">Wide range of functionality beyond editing</h3> <p> <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> </p>
</section> </section> <section> <section id="slide-orgec274dd"> <h2 id="orgec274dd">Resources</h2> <ul> <li><a href="https://gnu.org/software/emacs/">https://gnu.org/software/emacs/</a></li> <li><a href="https://github.com/chayward1/dotfiles">https://github.com/chayward1/dotfiles</a></li>
</ul> </section> </section> </div> </div> <script src="https://cdn.jsdelivr.net/npm/reveal.js/dist/reveal.js"></script>
<script> // Full list of configuration options available here: // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ multiplex: { secret: '', // null if client id: '', // id, obtained from socket.io server url: '' // Location of socket.io server },
// Optional libraries used to extend on reveal.js dependencies: [ { src: 'https://cdn.jsdelivr.net/npm/reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } }, { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, { src: 'https://cdn.jsdelivr.net/npm/reveal.js/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }] }); </script> </body> </html>
|