weirdNox / org-noter

Emacs document annotator, using Org-mode
GNU General Public License v3.0
1.08k stars 101 forks source link

Customized configuration #107

Open bepolymathe opened 4 years ago

bepolymathe commented 4 years ago

Hi,

For my annotations, I need to keep a bit of text but I don't want to highlight them so as not to modify the original document. So I have the following configuration which allows me, when I type "b" to comment in headline and get the highlighted part above the headline.

 (define-key pdf-view-mode-map (kbd "b") 'org-noter-insert-selected-text-inside-note-content)
 (defun org-noter-insert-selected-text-inside-note-content ()
   (interactive)
   (progn (setq currenb (buffer-name))
          (org-noter-insert-precise-note)
          (set-buffer currenb)
          (org-noter-insert-note)))

It's perfect, it works well. But I would like to go a little further in the automation. I'd like all excerpts to be embedded in quote tags and the text to be a paragraph block. Do you have any idea how I could set that up?

image