您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

17 行
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))