Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

16 рядки
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))