Christopher James Hayward
4 years ago
1 changed files with 0 additions and 121 deletions
@ -1,121 +0,0 @@ |
|||||
<!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-orgc5ce579"> |
|
||||
<h2 id="orgc5ce579">What is Emacs?</h2> |
|
||||
</section> |
|
||||
<section id="slide-orgc5ce579-split"> |
|
||||
|
|
||||
|
|
||||
<div class="figure"> |
|
||||
<p><img src="../images/what-is-emacs-teaser.png" alt="what-is-emacs-teaser.png" /> |
|
||||
</p> |
|
||||
</div> |
|
||||
|
|
||||
</section> |
|
||||
<section id="slide-orgc5ce579-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-org67dbb70"> |
|
||||
<h3 id="org67dbb70">Highly customizable</h3> |
|
||||
|
|
||||
<div class="figure"> |
|
||||
<p><img src="../images/what-is-emacs-customizable.gif" alt="what-is-emacs-customizable.gif" /> |
|
||||
</p> |
|
||||
</div> |
|
||||
|
|
||||
</section> |
|
||||
<section id="slide-org44536a6"> |
|
||||
<h3 id="org44536a6">Complete built-in documentation</h3> |
|
||||
|
|
||||
<div class="figure"> |
|
||||
<p><img src="../images/what-is-emacs-documentation.gif" alt="what-is-emacs-documentation.gif" /> |
|
||||
</p> |
|
||||
</div> |
|
||||
|
|
||||
</section> |
|
||||
<section id="slide-orgc1975b8"> |
|
||||
<h3 id="orgc1975b8">Wide range of functionality beyond editing</h3> |
|
||||
|
|
||||
<div class="figure"> |
|
||||
<p><img src="../images/2021-02-13-example-roam.png" alt="2021-02-13-example-roam.png" /> |
|
||||
</p> |
|
||||
</div> |
|
||||
|
|
||||
</section> |
|
||||
</section> |
|
||||
<section> |
|
||||
<section id="slide-org3c85255"> |
|
||||
<h2 id="org3c85255">Resources</h2> |
|
||||
<ul> |
|
||||
<li><a href="https://gnu.org/software/emacs/">https://gnu.org/software/emacs/</a> <sup><a id="fnr.1.100" class="footref" href="#fn.1">1</a></sup></li> |
|
||||
<li><a href="https://github.com/chayward1/dotfiles">https://github.com/chayward1/dotfiles</a> <sup><a id="fnr.2" class="footref" href="#fn.2">2</a></sup></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> |
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue