description | Manage bookmarks in Org mode. |
owner | numbchild@gmail.com |
last change | Fri, 15 Nov 2024 11:06:03 +0000 (15 19:06 +0800) |
URL | git://repo.or.cz/org-bookmarks.git |
| https://repo.or.cz/org-bookmarks.git |
push URL | ssh://repo.or.cz/org-bookmarks.git |
| https://repo.or.cz/org-bookmarks.git (learn more) |
bundle info | org-bookmarks.git downloadable bundles |
content tags
|
|
README.org
* Usage
=[M-x org-bookmarks]=
* The bookmarks Org mode file format
A bookmark entry in the bookmarks file requires three elements:
- headline is the bookmark title
- a tag "bookmark" to mark the headline as a bookmark
- the bookmark entry need to have a property "URL" with URL value
For example:
#+begin_src org
,* Emacs
,** /r/emacs :Reddit:bookmark:
:PROPERTIES:
:URL: https://www.reddit.com/r/emacs
:DATE: [2024-02-26 Mon 19:31]
:END:
,** /r/planetemacs :Reddit:bookmark:
:PROPERTIES:
:URL: https://www.reddit.com/r/planetemacs/
:DATE: [2024-02-26 Mon 19:37]
:END:
#+end_src