Markdown converter for slideshow.
- A Sublime Text 2 plugin for slideshow in your web browser from markdown file.
- Create a contents for markdown and then preview the slides in your browser.
- Changed separate from
---
to----
.
The easy to install using the Package Control.
- Press
ctrl+shift+p
(Windows) orcmd+shift+p
(OS X). thenPackage Control: Install Package
. - To install at the command of
Markdown Slideshow
.
Download is available from github, Install the folder of Sublime Text 2 Packages.
$ git clone git://github.com/ogom/sublimetext-markdown-slideshow.git
Let's add key bindings - user.
[
{
"keys": ["alt+s"], "command": "markdown_slideshow",
"args": {"theme": "default"}
}
]
[
{
"keys": ["alt+s"], "command": "markdown_slideshow",
"args": {"theme": "io2012"}
}
]
[
{
"keys": ["alt+s"], "command": "markdown_slideshow",
"args": {"theme": "io2011"}
}
]
[
{
"keys": ["alt+s"], "command": "markdown_slideshow",
"args":
{
"themes": "/opt/mcider/themes",
"theme": "io2012",
"extensions": ["fenced_code", "tables"],
"browser": true,
"presenter": false,
"clean": false,
"output_file": "/opt/mcider/tmp/slide.html"
}
}
]
- themes : Path of the custom themes
- theme : Theme of the slide. (default, io2012, io2011, ...)
- extensions : Provided to expand the base syntax. (extra, fenced_code, tables, ...)
- browser : View in Web Browser. (boolean, default true)
- presenter : Presenter mode. Only theme
io2012
. (boolean, default false) - clean : Theme was to clean the output. (boolean, default false)
- output_file : File to output slide.
- python-mcider
- Python-Markdown
- HTML5 slide template for Google I/O 2012
- HTML5 slide template for Google I/O 2011
- MIT