dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

org-contrib.el (1995B)


      1 ;;; org-contrib.el --- Unmaintained add-ons for Org-mode
      2 
      3 ;; Copyright (C) 2021 Bastien Guerry
      4 
      5 ;; Author: Bastien Guerry <bzg@gnu.org>
      6 ;; Homepage: https://git.sr.ht/~bzg/org-contrib
      7 ;; Package-Requires: ((emacs "25.1") (org "9.4.6"))
      8 ;; Version: 0.4.1
      9 ;; Keywords: org
     10 ;; SPDX-License-Identifier: GPL-3.0-or-later
     11 
     12 ;; This file is not part of GNU Emacs.
     13 
     14 ;; This program is free software: you can redistribute it and/or modify
     15 ;; it under the terms of the GNU General Public License as published by
     16 ;; the Free Software Foundation, either version 3 of the License, or
     17 ;; (at your option) any later version.
     18 
     19 ;; This program is distributed in the hope that it will be useful,
     20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
     21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     22 ;; GNU General Public License for more details.
     23 
     24 ;; You should have received a copy of the GNU General Public License
     25 ;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
     26 
     27 ;;; Commentary
     28 
     29 ;; This package contains add-ons to Org-mode which are not part of GNU
     30 ;; Emacs or of the official Org package.
     31 
     32 ;; ** This package receive little if no maintainance. **
     33 
     34 ;; Especially, there is no guaranty that it is compatible with the latest
     35 ;; Org stable version.  Would you would like to volunteer maintaining it?
     36 ;; If so, please send me an email at bzg@gnu.org.
     37 
     38 ;; If you want to maintain only one or some of these add-ons please send
     39 ;; me an email and consider hosting the add-ons on a separate repository.
     40 
     41 ;; These files used to live in the Org repository but have been filtered
     42 ;; out of the Org 9.5 release and are stored here for archival purpose.
     43 ;; The contrib/ directory used to contain a scripts/ directory that now
     44 ;; lives on Worg: <https://code.orgmode.org/bzg/worg/src/master/code>.
     45 
     46 ;;; Note:
     47 
     48 ;; This file, org-contrib.el, provides metadata for the (future)
     49 ;; org-contrib GNU ELPA package.
     50 
     51 ;;; Code:
     52 
     53 (provide 'org-contrib)
     54 
     55 ;;; org-contrib.el ends here