This is awesome, thank you. I'll play around with it!
Hi Peter,
(setq org-fontify-quote-and-verse-blocks t)
Peter Salazar <cycleofsong@gmail.com> writes:
> 1. What's the best way to demarcate block quotes in org-mode?
This uses the org-quote face, which inherits its properties from the
org-block face -- M-x customize-face RET org-quote RET to customize
the org-quote face.
You can play around with this
> 2. It would also be cool to find a way to make bulleted lists appear
> in a different color if possible, or a workaround to simulate this.
(highlight-regexp (org-item-re))
or
(highlight-regexp (org-item-re) 'org-quote)
or
(highlight-regexp org-list-full-item-re 'org-quote)
...
But this is hackish, temporary and half-satisfactory.
HTH,
--
Bastien