Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nobiot/org-remark
Highlight & annotate text, EWW, Info, and EPUB
https://github.com/nobiot/org-remark
annotate emacs note-taking org-mode org-roam
Last synced: 3 months ago
JSON representation
Highlight & annotate text, EWW, Info, and EPUB
- Host: GitHub
- URL: https://github.com/nobiot/org-remark
- Owner: nobiot
- License: gpl-3.0
- Created: 2020-12-22T15:11:42.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-25T20:18:14.000Z (8 months ago)
- Last Synced: 2024-03-25T21:33:22.091Z (8 months ago)
- Topics: annotate, emacs, note-taking, org-mode, org-roam
- Language: Emacs Lisp
- Homepage: https://nobiot.github.io/org-remark/
- Size: 5.84 MB
- Stars: 400
- Watchers: 11
- Forks: 19
- Open Issues: 11
-
Metadata Files:
- Readme: README-elpa
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
_____________________
README – ORG-REMARK
_____________________Table of Contents
_________________1. Introduction
2. Features
3. Installation
4. Contributing and Feedback
5. Contributors
6. License1 Introduction
==============Org-remark lets you highlight and annotate text files, websites, EPUB
books and Info documentation with using Org mode.A user manual is available [online] or Emacs in-system as an Info node
`(org-remark)': (`C-h i' and find the `Org-remark' node).For installation and minimum configuration, refer to [Installation]
below or the user manual: [online] or Info node `(org-remark)
Installation'Getting Started in the user manual will get you started in 5 minutes:
[online] or or Info node `(org-remark) Getting Started'.For customization, refer to the customization group `org-remark' or
user manual: [online] or Info node `(org-remark) Customizing'. A
[separate online article] has been written to guide you on how to
customize an icon (also part of the user manual. Evaluate (info
"(or-gremark) How to Set Org-remark to Use SVG Icons").An [introductory video] (8 minutes) and [V1.1.0 release introduction]
(12 minutes) are available on YouTube.[online]
[Installation] See section 3
[online]
[online]
[online]
[separate online article]
[introductory video]
[V1.1.0 release introduction]
2 Features
==========- Highlight and annotate any text file. The highlights and notes are
kept in an Org file as the plain text database. This lets you easily
manage your marginal notes and use the built-in Org facilities on
them -- e.g. create a sparse tree based on the category of the notes- Create your your own highlighter pens with different colors, type
(e.g. underline, squiggle, etc. optionally with Org's category for
search and filter on your highlights and notes)- Have the same highlighting and annotating functionality for
+ Websites when you use EWW to browse them
+ EPUB books with [nov.el]
+ Info documentation
[nov.el]
3 Installation
==============This package is available on:
- [GNU-ELPA] (releases only; equivalent to MELPA-Stable)
- [GNU-devel ELPA] (unreleased main branch; equivalent to MELPA)GNU ELPA should be already set up in your Emacs by default. If you
wish to add GNU-devel ELPA, simply add its URL to `package-archives'
like this:,----
| (add-to-list 'package-archives
| '("gnu-devel" . "https://elpa.gnu.org/devel/") :append)
`----After installation, we suggest you put the setup below in your
configuration.,----
| (org-remark-global-tracking-mode +1)
|
| ;; Optional if you would like to highlight websites via eww-mode
| (with-eval-after-load 'eww
| (org-remark-eww-mode +1))
|
| ;; Optional if you would like to highlight EPUB books via nov.el
| (with-eval-after-load 'nov
| (org-remark-nov-mode +1))
|
| ;; Optional if you would like to highlight Info documentation via Info-mode
| (with-eval-after-load 'info
| (org-remark-info-mode +1))
`----Unless you explicitly load `org' during Emacs initialization, I
suggest to defer loading `org-remark' (thus there is no `(require
'org-remark)' in the example above). This is because it will also pull
in `org', which can slow down initialization. You can control the
timing of loading `org-remark' by autoloading some commands in a
similar way with the example keybindings below.Below are example keybindings you might like to consider:
,----
| ;; Key-bind `org-remark-mark' to global-map so that you can call it
| ;; globally before the library is loaded.
|
| (define-key global-map (kbd "C-c n m") #'org-remark-mark)
|
| ;; The rest of keybidings are done only on loading `org-remark'
| (with-eval-after-load 'org-remark
| (define-key org-remark-mode-map (kbd "C-c n o") #'org-remark-open)
| (define-key org-remark-mode-map (kbd "C-c n ]") #'org-remark-view-next)
| (define-key org-remark-mode-map (kbd "C-c n [") #'org-remark-view-prev)
| (define-key org-remark-mode-map (kbd "C-c n r") #'org-remark-remove)
| (define-key org-remark-mode-map (kbd "C-c n d") #'org-remark-delete))
`----Alternatively, you can use `use-package' to set up Org-remark. The
example provided below should be equivalent to the setup described
above.,----
| (use-package org-remark
| :bind (;; :bind keyword also implicitly defers org-remark itself.
| ;; Keybindings before :map is set for global-map.
| ("C-c n m" . org-remark-mark)
| :map org-remark-mode-map
| ("C-c n o" . org-remark-open)
| ("C-c n ]" . org-remark-view-next)
| ("C-c n [" . org-remark-view-prev)
| ("C-c n r" . org-remark-remove)
| ("C-c n d" . org-remark-delete))
| ;; Alternative way to enable `org-remark-global-tracking-mode' in
| ;; `after-init-hook'.
| ;; :hook (after-init . org-remark-global-tracking-mode)
| :init
| ;; It is recommended that `org-remark-global-tracking-mode' be
| ;; enabled when Emacs initializes. Alternatively, you can put it to
| ;; `:after-init-hook' to load it after Emacs has been initialized.
| (org-remark-global-tracking-mode +1)
| (use-package org-remark-info :after info :config (org-remark-info-mode +1))
| (use-package org-remark-eww :after eww :config (org-remark-eww-mode +1))
| (use-package org-remark-nov :after nov :config (org-remark-nov-mode +1)))
`----[GNU-ELPA]
[GNU-devel ELPA]
4 Contributing and Feedback
===========================Create issues, discussion, and/or pull requests in the GitHub
repository. All welcome.Org-remark is available on GNU ELPA and thus copyrighted by the [Free
Software Foundation] (FSF). This means that anyone who is making a
substantive code contribution will need to "assign the copyright for
your contributions to the FSF so that they can be included in GNU
Emacs" ([Org Mode website]).Thank you.
[Free Software Foundation]
[Org Mode website]
5 Contributors
==============New features
EPUB books (nov.el) support would not have been possible without
collaboration with @sati-bodhi`echo-text' update from the marginal notes to the source buffer
by marty hiatt (@mooseyboots)Support for websites with `eww-mode' by Vedang Manerikar
(@vedang)Bug fixes
@alan-w-255, Nan Jun Jie (@nanjj), @sgati-bodhiDocumentation (including README, NEWS, CHANGELOG)
@randomwangran, marty hiatt (@mooseyboots), @jsntnAll the comments, issues, and questions on GitHub
@randomwangran, @karthink, @holtzermann17, @shombando, @magthe,
@linwaytin, @rtrppl, @ryanprior, @ericsfraga, @darcamo, @zhewy,
@QMeqGR, @Vidianos-Giannitsis, @AtomicNess123, @mooseyboots, @ouboub,
@dian-yu-luo, @SylvianHemus, @basaran, @Ypot, @oatmealm, @sati-bodhi6 License
=========This work is licensed under a GPLv3 license. For a full copy of the
license, refer to [LICENSE].[LICENSE] <./LICENSE>