A MDFriday theme for creating presentations with Markdown.
~ Theme made by @dzello ~
The fragment shortcode makes content appear incrementally.
{{% fragment %}} One {{% /fragment %}}
{{% fragment %}} Two {{% /fragment %}}
{{% fragment %}} Three {{% /fragment %}}
One Two Three
The frag shortcode is more terse than fragment. It accepts a c attribute.
{{< frag c="One" >}}
{{< frag c="Two" >}}
{{< frag c="Three" >}}
One Two Three
The Put the shortcode around the slides you want to group together. Keep going down. Use the right arrow or swipe right to continue.Section
section shortcode groups slides into a vertical display.
use the down arrow or swipe down to continue
🔽
{{% section %}}
## Section slide 1
---
## Section slide 2
{{% /section %}}
That's it!
Use this shortcode when you need to customize slide attributes like id, class, background color and transition.
Did you notice? This slide has a fast zoom transition.Custom slide 1
---
{{% slide transition="zoom" transition-speed="fast" %>}}
## Custom slide 1
{{% /slide %}}
---
This slide has a different background color.Custom slide 2
This slide has a background image.Custom slide 3
\[ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } \]
Inline math:
This is an inline polynomial: \(5x^2 + 2y -7\) .
{{< mermaid >}}
graph LR
A --> B
B --> C
{{< /mermaid >}}