If Amazon used this Besos wouldn't have banned PowerPoint.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
besos-loves-slides/sample/about-bezos.md

64 lines
1.1 KiB

{
"title": "How to use Bezos",
"description": "A short presentation on Bezos."
}
===
# Bezos Slide Format
* Just markdown
separated by ---
* Each slide can
have a json header
---
# Supported Markdown
* Simple lists with *
* Images with !(file)
Spaces Newlines or
Bare content like this
---
# Deck Header
* Right after ===
* Use {} to configure
* "title"
* "description"
* "bg_color": [r,g,b,a]
* "bg_image": "filepath.jpg"
---
{ "bg_color": [55, 20, 10, 255] }
# Slide Color
* { "bg_color": [r,g,b,a] }
* Same as deck header
* Put before the content
---
{ "bg_image": "assets/sample_bg.jpg" }
# Slide Background
* { "bg_image": "file_path" }
* You don't even need text
---
{
"bg_color": [10, 10, 25, 255],
"font_color": [255, 146, 0, 255],
"font_size": 80,
"font_padding": 20
}
# Font Config
* Only on slides for now
* "font_color": [r,g,b,a]
* "font_size": int
* "font_padding": int
---
{
"font_size": 120,
"font_centered": true
}
One Word
---
# Images
!(assets/sample_bg.jpg)
* !(assets/sample_bg.jpg)
* Text will go over image
* Image will stretch to fill
---