diff options
Diffstat (limited to 'docs.el')
-rw-r--r-- | docs.el | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +;;; docs.el --- configuration for docs exports +;;; Commentary: +;;; Code: +(require 'org) +(require 'ox) +(require 'ox-ascii) + +;; We do NOT want backup files. +(setq make-backup-files nil) + +(defun docs-install-txt () + "Extract and export installation manual from the User Manual." + (let ((org-export-with-toc nil)) + (re-search-forward "^* Installation") + (org-ascii-export-to-ascii nil t))) + +(provide 'docs) +;;; docs.el ends here |