Markdown presentation using pandoc
03 August,2022
Use pandoc to convert markdown to presentation. Inorder to install pandoc
sudo apt install pandoc texlive texlive texlive-base texlive-xetex texlive-extra-utils
create a markdown file.
---
title: Test Presentation
author: Test Author
---
# Test Section
- test
![Image](gnu.png)
# Test 2 Section
## Test 2 Subsection
- test 2
- test 2 subpoint
- test 2 sub-subpoint
convert markdown file
pandoc -t beamer test.md -o test.pdf
Heres a pdf i created using jekyll:
The source code for this presentation can be found here
Slides can be customized with Beamer themes. A really helpful guide i formarkdown presentation can be found in this link.