aboutsummaryrefslogtreecommitdiff
path: root/docs.el
diff options
context:
space:
mode:
Diffstat (limited to 'docs.el')
-rw-r--r--docs.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs.el b/docs.el
new file mode 100644
index 0000000..d6d53ff
--- /dev/null
+++ b/docs.el
@@ -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