From 4abcce013c9ee3053badf2abda77190233066676 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Fri, 23 Feb 2024 10:35:22 +0100 Subject: Testing thoughts page --- .../2023-06-21-presentations-with-markdown.md | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 _posts/notes/2023-06-21-presentations-with-markdown.md (limited to '_posts/notes/2023-06-21-presentations-with-markdown.md') diff --git a/_posts/notes/2023-06-21-presentations-with-markdown.md b/_posts/notes/2023-06-21-presentations-with-markdown.md new file mode 100644 index 0000000..9c4fa22 --- /dev/null +++ b/_posts/notes/2023-06-21-presentations-with-markdown.md @@ -0,0 +1,79 @@ +--- +title: "Simple presentations with Markdown" +permalink: /presentations-with-markdown.html +date: 2023-06-21T08:54:48+02:00 +layout: post +type: note +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