Simple presentations with Markdown
A simple way to make presentations without using desktop apps or using online services is https://github.com/remarkjs/remark.
First create index.html
and be sure you make changes to config
variable.
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<style>
body {
font-family: 'SF Pro Display';
}
.remark-code,
.remark-inline-code {
font-family: 'SF Mono';
font-size: medium;
background-color: gainsboro;
border-radius: 5px;
padding: 0 5px;
}
</style>
</head>
<body>
<textarea id="source"></textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js"></script>
<script>
const config = {
title: 'My presentation',
file: 'presentation.md',
};
document.title = config.title;
remark.create({ sourceUrl: config.file });
</script>
</body>
</html>
Now the markdown file presentation.md
with presenetation. ---
is used to
separate slides. Other stuff is just pure markdown.
class: center, middle
# Main title of the presentation
---
# Fist slide
Eveniet mollitia nemo architecto rerum aut iure iste. Sit nihil nobis libero iusto fugit nam laudantium ut. Dignissimos corrupti laudantium nisi.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Integer aliquet mauris a felis fringilla, ut congue massa finibus.
---
# Slide two
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Vestibulum eget leo ac dolor venenatis pulvinar.
Other notes
- Cache busting in Hugo
- Write ISO to USB Key
- Extract lines from a file with sed
- Extending dte editor
- Bulk thumbnails
- Use option key as meta in Alacritty under macOS
- plan9 Fix bootloader not being written in Plan9
- c Calling assembly functions from C
- 10/GUI 10 Finger Multitouch User Interface
- 60's IBM Computers Commercial
- plan9 Install Plan9port on Linux
- Add lazy loading of images in Jekyll posts
- Parse RSS feeds with Lua
- Development environments with Nix
- dcss Dungeon Crawl Stone Soup - New player guide