[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org-remark d73c72cfc3 16/16: docs(info): Add copyright
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org-remark d73c72cfc3 16/16: docs(info): Add copyright and commentary to source header |
Date: |
Sat, 29 Jul 2023 18:58:48 -0400 (EDT) |
branch: externals/org-remark
commit d73c72cfc369a46517bfd06848fd521a2f583e24
Author: Noboru Ota <me@nobiot.com>
Commit: Noboru Ota <me@nobiot.com>
docs(info): Add copyright and commentary to source header
---
org-remark-info.el | 50 ++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 48 insertions(+), 2 deletions(-)
diff --git a/org-remark-info.el b/org-remark-info.el
index 3d85b6713f..cbfaa6d147 100644
--- a/org-remark-info.el
+++ b/org-remark-info.el
@@ -1,10 +1,56 @@
;;; org-remark-info.el --- Support Org-roam with Info-mode -*-
lexical-binding: t; -*-
+;; Copyright (C) 2021-2023 Free Software Foundation, Inc.
+
+;; Author: Noboru Ota <me@nobiot.com>
;; URL: https://github.com/nobiot/org-remark
-;; Created: 16 January 2023
-;; Last modified: 21 July 2023
+;; Created: 16 July 2023
+;; Last modified: 29 July 2023
+;; Package-Requires: ((emacs "27.1") (org "9.4"))
+;; Keywords: org-mode, annotation, note-taking, marginal-notes, wp
+
+;; This file is not part of GNU Emacs.
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or (at
+;; your option) any later version.
+
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
+;;
+;; This file is an Org-remark extension to add highlights and
+;; annotation support for Info-mode.
+;;
+;; The extension can be enabled globally with `org-remark-info-mode'
+;;
+;; Highlights will include the links to the original with using
+;; `ol-info' (Org mode's info: link type). By default, it opens the
+;; node within the same window as the Org buffer, which is not
+;; convenient for the purpose of Org-remark. You can configure Emacs to
+;; open info: link into another window. See an example of such a
+;; customization below:
+;;
+;; (setopt switch-to-buffer-obey-display-actions t)
+;; (add-to-list 'display-buffer-alist
+;; '("\*info\*.*"
+;; (display-buffer-reuse-mode-window)
+;; (mode . Info-mode)))
+;;
+;; You will need to use `org-remark-info-mode' in conjunction with
+;; `org-remark-global-tracking-mode' and `org-remark-mode'. For more,
+;; refer to the following Info node:
+;;
+;; - Info node `(org-remark) Installation'
+;; - Info node `(org-remark) Getting Started'
+
;;; Code:
- [elpa] externals/org-remark 346fe9cf69 15/16: refactor: separate org-remark-icon into its own feature/file, (continued)
- [elpa] externals/org-remark 346fe9cf69 15/16: refactor: separate org-remark-icon into its own feature/file, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark ec693af64a 01/16: feat: org-remark-info-mode to support Info-mode #65, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark 87404b78d3 14/16: Merge branch 'main' into dev/1.2.0, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark b44092e6cf 06/16: style: make org-remark-highlight-save obsolete and add alias, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark a0624e2ebc 04/16: fix: make sure new top-level headline is appended, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark c6941579e3 09/16: refactor(nov): nov can defer loading org-remark, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark 6ef0b47bd2 12/16: fix: revert-buffer duplicates highlights, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark c701d9ceaa 07/16: style: silence compiler warning, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark 8ae3c426e0 08/16: fix: default highlighter color for dark theme, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark 0e05580760 10/16: feat(info): Advice to support rendering Info nodes in same buffer, ELPA Syncer, 2023/07/29
- [elpa] externals/org-remark d73c72cfc3 16/16: docs(info): Add copyright and commentary to source header,
ELPA Syncer <=