22
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Sublime Text で Slideshow

Last updated at Posted at 2012-08-20

=========================

Qiitaのkobitoもそうですが、Markdown記法がとても便利で普段のドキュメントもMarkdown記法で作成することが多いです。

作成したドキュメントでレビューやプレゼンテーションをすることがありますが、PowerPointやKeynoteにわざわざ作り直すのが手間です。

MarkdownはHTMLに変換できるのでWebブラウザのスライドテンプレートと組み合わせてSublime TextのPluginのMarkdown Slideshowを作りました。

スライドテンプレートにはGoogle I/O 2012Google I/O 2011が使えます。

使い方

Package ControlでPluginをインストールして、Key Bindingsを設定します。

スライドテンプレートはカスタマイズしないとまんまGoogle I/Oになるので用途に応じてテンプレートをカスタマイズして利用して下さい。

設定

Key Bindingsのサンプルです。
Browse PackagesMarkdown Slideshowのthemesを任意のディレクトリにコピーします。
(サンプルではthemesを/opt/mcider/themesにコピーしています。)

Default.sublime-keymap
[
  {
    "keys": ["alt+s"],
    "command": "markdown_slideshow",
    "args":
    {
      "themes": "/opt/mcider/themes",
      "theme": "io2011",
      "extensions": ["tables"],
      "browser": true,
      "clean": false,
      "output_file": "/opt/mcider/tmp/slide.html"
    }
  }
]

Sublime TextはPythonでPluginが書けるので、便利な機能をどんどん追加できます。

22
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?