Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- ;;-*-mode: emacs-lisp; coding: utf-8;-*-
- ;; Copyright: 2016 Mitchell Tishmack
- ;; Tangle an org mode file with babel using emacs.
- (require 'org-install)
- (require 'org)
-
- (load-file "./tangle.el")
-
- (load-defaults-or-options)
-
- ;; Iterate through all the files given and tangle them
- (dolist
- (file command-line-args-left)
- (princ file)
- (org-babel-tangle-file file))
|