Add README

This commit is contained in:
Correl Roush 2022-10-29 01:04:53 -04:00
parent 3faf4382e3
commit 6cebce6e81
1 changed files with 16 additions and 0 deletions

16
README.org Normal file
View File

@ -0,0 +1,16 @@
#+title: org-roam-export-backlinks
This package appends a backlinks section with excerpts to your exported org-roam
documents.
The package exports an =org-roam-export-backlinks-preprocessor= function that
can be added to the =org-export-before-processing-hook=.
* Example usage in Doom Emacs
#+begin_src emacs-lisp
(use-package! org-roam-export-backlinks
:after org-roam
:init
(add-hook 'org-export-before-processing-hook #'org-roam-export-backlinks-preprocessor))
#+end_src