marp | size | theme | paginate |
---|---|---|---|
true |
14580 |
default |
true |
- Autor✍: Francisco Javier Moreno Vazquez
- Email✉: [email protected]
Create beautiful slide decks using an intuitive Markdown experience
MARP (also known as the Markdown Presentation Ecosystem) provides an intuitive experience for creating beautiful slide decks. You only have to focus on writing your story in a Markdown document.
- Based on CommonMark
- Directives and extended syntax
- Built-in themes and CSS theming
- Export to HTML, PDF, and PowerPoint
- Marp family: The official toolset
- Pluggable architecture
- Fully open-source❤
Marp creates slides with the next format:
<section>
<header>Header content</header>
<h1>Page 1</h1>
<footer>Footer content</footer>
</section>
Where each slide is a section, so this can be changed with CSS styles. In the default style, the content starts at the vertical center of the slide.
By using css styles we can configurate the slide to produce a Powerpoint like layout.
- In this layout the content begins at the top of the slide.
- Each paragraph
<p>
is justify to be a more readable text.
This slide is styled to be a doble columns slide, this is produced by using to html elements inside the <twocolumn>
element.
- In this case, this is the first column or the
<column1>
element.
This slide is styled to be a doble columns slide, this is produced by using to html elements inside the <twocolumn>
element.
- And this is the second column or the
<column2>
element.
This slide is called ti
that stands for Text and Image slide. We can see the image floating at the right of the slide.
Conversely, this slide is called it
that stands for Image and Text slide. We can see the image floating at the left of the slide.