branch: elpa/org-auto-tangle
commit eed3601f4be8e386dc5ae5bd242567f6578a87a2
Author: lispy-dobby <[email protected]>
Commit: GitHub <[email protected]>
added syntax highlighting and some spelling corrections
---
README.org | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.org b/README.org
index 76ac1adae4..ee147f307b 100644
--- a/README.org
+++ b/README.org
@@ -13,7 +13,7 @@ emacs session.
Simply require the package in you emacs init and hook it into org-mode.
-#+begin_src
+#+begin_src emacs-lisp
(require 'org-auto-tangle)
@@ -23,10 +23,10 @@ Simply require the package in you emacs init and hook it
into org-mode.
or you can use use-package
-#+begin_src
+#+begin_src emacs-lisp
(use-package org-auto-tangle
- :load-path "site-lisp/org-auto-tangle/" ;; this line is necessary only if
you cloned the repo in your site lisp directory
+ :load-path "site-lisp/org-auto-tangle/" ;; this line is necessary only if
you cloned the repo in your site-lisp directory
:defer t
:hook (org-mode . org-auto-tangle-mode)
)