From cd15befb9fbc89cc3dfbb31412d421c8746e3037 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jun 2023 09:21:14 +0200 Subject: Note: Markdown presentations with remarkjs --- content/notes/ewd-manuscripts-ebook.md | 2 +- content/notes/presentations-with-markdown.md | 78 ++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 content/notes/presentations-with-markdown.md (limited to 'content/notes') diff --git a/content/notes/ewd-manuscripts-ebook.md b/content/notes/ewd-manuscripts-ebook.md index 3363bad..1e496b9 100644 --- a/content/notes/ewd-manuscripts-ebook.md +++ b/content/notes/ewd-manuscripts-ebook.md @@ -4,7 +4,7 @@ url: ewd-manuscripts-ebook.html date: 2023-06-01T22:47:56+02:00 type: notes draft: false -tags: [] +tags: [random] --- I love reading the original manuscripts of Edsger W. Dijkstra. They are diff --git a/content/notes/presentations-with-markdown.md b/content/notes/presentations-with-markdown.md new file mode 100644 index 0000000..f43faad --- /dev/null +++ b/content/notes/presentations-with-markdown.md @@ -0,0 +1,78 @@ +--- +title: "Simple presentations with Markdown" +url: presentations-with-markdown.html +date: 2023-06-21T08:54:48+02:00 +type: notes +draft: false +tags: [random] +--- + +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. + +```html + + + + + + + + + + + + + + + + +``` + +Now the markdown file `presentation.md` with presenetation. `---` is used to +separate slides. Other stuff is just pure markdown. + +```md +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. +``` -- cgit v1.2.3