25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ;;-*-mode: emacs-lisp; coding: utf-8;-*-
- ;; Copyright: 2016 Mitchell Tishmack
- ;; Tangle an org mode file with babel using emacs.
- (load-file (if (getenv "OPTIONS")
- (concat (concat "./" (getenv "OPTIONS")) ".el")
- "./options.el"))
-
- (require 'org-install)
- (require 'org)
-
- ;; Iterate through all the files given and tangle them
- (dolist
- (file command-line-args-left)
- (princ file)
- (org-babel-tangle-file file))
|