miniprez
Beautiful presentations in minimalist format
The problem
-
I want simple and beautiful presentations. -
Presentations that compile from text to interactive webpages. -
Presentations that seperate content from style like Markdown. -
Presentations that render mathematics and highlight code.
Oh, and they should work well* on mobile too.
The solution:
miniprez
miniprez
simple markdown support
-
💪
bold
**text**
-
🔥
fire
*text*
-
☁
emph
_text_
-
💻
code
`code`
**text**
*text*
_text_
code
`code`
math support
$P(x)=\frac{1}{\sigma\sqrt{2\pi}}e^{-\frac{(x-\mu)^2}{2\sigma ^2}}$
pretty code blocks
sort [] = [] sort (x:xs) = sort lower ++ [x] ++ sort higher where lower = filter (< x) xs higher = filter (>= x) xs
main() { char c = getchar(); (c == '+' || c == '-' || c == '*' || c == '/') ? main(), main() : 0; putchar(c); }