Add file comment metadata

This commit is contained in:
TEC 2020-08-29 12:42:56 +08:00
parent e7679a28f6
commit 35d2afc526
Signed by: tec
GPG Key ID: 779591AFDB81F06C
2 changed files with 28 additions and 4 deletions

View File

@ -1,5 +1,6 @@
;;; org-pandoc-import-transient.el -*- lexical-binding: t; -*-
;; This file is part of org-pandoc-import.
;; SPDX-License-Identifier: GPL-3.0-or-later
;; TODO add backups, better folder names, cleanup on emacs exit
@ -161,3 +162,5 @@ we want to re-create the associated org file."
(make-directory (expand-file-name "org-transients" temporary-file-directory) t)
(provide 'org-pandoc-import-transient)
;;; org-pandoc-import-transient.el ends here

View File

@ -1,8 +1,19 @@
;;; org-pandoc-import.el -*- lexical-binding: t; -*-
;;; org-pandoc-import.el --- Stay in org-mode as much as possible -*- lexical-binding: t; -*-
;; Copyright 2020 tecosaur
;;
;; This file is part of org-pandoc-import.
;; Copyright (C) 2020 TEC
;; Author: TEC <http://github/tecosaur>
;; Maintainer: TEC <tec@tecosaur.com>
;; Created: 16 Aug 2020
;; Modified: August 29, 2020
;; Version: 0.0.1
;; Keywords: org-mode, pandoc
;; Homepage: https://github.com/tecosaur/org-pandoc-import
;; Package-Requires: ((emacs "26.3"))
;;; License:
;; This file is part of org-pandoc-import, which is not part of GNU Emacs.
;;
;; org-pandoc-import is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@ -19,6 +30,14 @@
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Commentary:
;; Leverage Pandoc to convert non-org formats to org, and supplies a minor mode
;; to do on-the-fly conversion tranransparently and automatically, exporting
;; to the original format on save.
;;; Code:
(defgroup org-pandoc-import nil
"Provides methods to convert other markup files to Org."
:prefix 'org-pandoc-import)
@ -323,3 +342,5 @@ the extension of FILE, or nil if no such association could be found."
(org-pandoc-import-backend tsv '("tsv") "csv")))
(provide 'org-pandoc-import)
;;; org-pandoc-import.el ends here