MarkdownPresenter is a very simplistic markdown presentation editor and viewer that uses markdown to create pdf slides. Especially its simplicity makes it a good choice for quickly creating some slides – for which other tools would easily be too bloated. To use MarkdownPresenter you just need to:
- Download from https://github.com/jsakamoto/MarkdownPresenter
- Start MarkdownPresenter by executing the
Marp
executable file.
MarkdownPresenter usage
MarkdownPresenter uses regular markdown, with one exception:
---
,***
, or___
indicates the end of a slides/start of the next slide, instead of introducing a horizontal line.
Therefore, to make slides, you will use
#
,##
, etc. to create headlines*
,1.
, to create bullet points and enumerations` to create links![]()
to include figures- …
Even tables work as expected:
# Tables |A|B|C| |---:|:---|---| |test|Test|ab| |1|2|3|
here (a bigger example is available at https://jsakamoto.github.io/MarkdownPresenter/Presenter.html#1):
# Marp Is a very simplistic markdown presentation editor and viewer. It can export markdown to pdf slides. * Download from https://github.com/jsakamoto/MarkdownPresenter * Start Marp by executing the `Marp` executable file. --- # Marp Usage Marp uses regular markdown, with one exception: * `---`, `***`, or `___` indicates the end of a slides/start of the next slide, instead of introducing a horizontal line. Therefore, to make slides, you will use: * #`, `##`, etc. to create headlines * *`, `1.`, to create bullet points and enumerations * `[]()` to create links * `![]()` to include figures * ... --- # Marp Usage Even tables work as expected: |A|B|C| |---:|---:|:---| |test|Test|ab| |1|2|3|