You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 rivejä
452 B

  1. ;; Tangle an org mode file with babel using emacs.
  2. (let ((default-directory "~/.emacs.d"))
  3. (normal-top-level-add-subdirs-to-load-path))
  4. (load-file (if (getenv "OPTIONS")
  5. (concat (concat "./" (getenv "OPTIONS")) ".el")
  6. "./options.el"))
  7. (require 'org-install)
  8. (require 'org)
  9. ;; Iterate through all the files given and tangle them
  10. (dolist
  11. (file command-line-args-left)
  12. (princ file)
  13. (org-babel-tangle-file file))