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.
 
 
 
 

16 regels
442 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; Copyright: 2016 Mitchell Tishmack
  3. ;; Tangle an org mode file with babel using emacs.
  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))