branch: elpa/textile-mode commit 37d9b7af86a569bf2f3baf13cc48c7f52945e0df Author: Julien Barnier <jul...@nozav.org> Commit: Julien Barnier <jul...@nozav.org>
Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e603f51246..8447336130 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,13 @@ http://hobix.com/textile/ Installation of Textile-mode is really nothing original. Put the file in a directory into your load-path, and then add the following into your .emacs : -``` +```{elisp} (require 'textile-mode) ``` Then you can toggle manualy the major mode with `M-x` `textile-mode` or you can associate it with a file extension with : -``` +```{elisp} (add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode)) ```