LoginSignup
8
8

More than 5 years have passed since last update.

備忘録Markdown記法

Last updated at Posted at 2014-07-25

文法

Emacs で markdown-mode

インデントの為の空白が消されて、行頭に揃えられてしまうのを防ぐ

emacs 24.4のmarkdown-modeでリストのインデントが行頭に揃えられてしまう(解決)
より、設定ファイルに以下を追記。

; リストのインデントが行頭に揃えられてしまうのを防ぐ
(add-hook 'markdown-mode-hook
          '(lambda ()
            (electric-indent-local-mode -1)))

Cygwin で M- を使えるようにする

最近の Cygwin は、端末ウィンドウに mintty を用いている。
mintty 自体に Alt キーを用いたショートカットが標準設定されているので、
まずこれを無効にする。

  1. mintty のウィンドウ上で右クリックし option をクリック
  2. 左部で keys をクリックし Shortcuts の中の Menu and Full Screen のチェックを外す
  3. emacs の設定ファイルに、下記を追記する。
;AltキーをMetaキーとして用いる
(setq w32-alt-is-meta nil)

Winodws の専用エディタ

Markdown 記法が使える iPhone アプリ

Googleドキュメントで使う

8
8
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
8
8