0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-12 07:39:58 +00:00

Added a 'Getting Started' section to org-babel.org with the necessary (require ...) line

This commit is contained in:
Dan Davison 2009-06-26 10:15:42 -04:00
parent 4609674897
commit 6c34513c51

View file

@ -27,6 +27,7 @@ Also see the [[file:library-of-babel.org][Library of Babel]] an extensible colle
and easily-shortcut-callable source-code blocks for handling common
tasks.
* Introduction
Org-Babel enables *communication* between programming languages and
@ -178,6 +179,16 @@ collected after evaluation.
thought of as similar to a "script" style of evaluation.
* Getting started
Add the following lines to your .emacs, replacing the path as
appropriate. A good place to check that things are up and running
would then be [[#sandbox][the sandbox]].
#+begin_src emacs-lisp
(add-to-list 'load-path "/path/to/org-babel/lisp")
(require 'org-babel-init)
#+end_src
* Tasks [27/42]
** TODO support for working with =*Org Edit Src Example*= buffers [1/4]
*** TODO set buffer-local-process variables appropriately [DED]