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.
 
 
 
 

19 rivejä
530 B

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