Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

16 Zeilen
367 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; Copyright: 2016 Mitchell Tishmack
  3. ;; Tangle an org mode file with babel using emacs.
  4. (require 'org-install)
  5. (require 'org)
  6. (load-file "./tangle.el")
  7. (load-defaults-or-options)
  8. ;; Iterate through all the files given and tangle them
  9. (dolist
  10. (file command-line-args-left)
  11. (princ file)
  12. (org-babel-tangle-file file))