Skip to content

Instantly share code, notes, and snippets.

@mooz
Created December 13, 2010 08:36
Show Gist options
  • Save mooz/738798 to your computer and use it in GitHub Desktop.
Save mooz/738798 to your computer and use it in GitHub Desktop.
(autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t)
(add-to-list 'auto-mode-alist '("\\.text" . markdown-mode))
(add-to-list 'auto-mode-alist '("\\.md" . markdown-mode))
;; 日本語出力用
(add-hook 'markdown-mode-hook
(lambda ()
(make-local-variable coding-system-for-write)
(setq coding-system-for-write 'utf-8)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment