jeremy-compostella / org-msg

OrgMsg is a GNU/Emacs global minor mode mixing up Org mode and Message mode to compose and reply to emails in a Outlook HTML friendly style.
GNU General Public License v3.0
276 stars 57 forks source link

Convert citations (lines starting with ">") to HTML <blockquote> #96

Closed Chris00 closed 3 years ago

Chris00 commented 3 years ago

Fixes https://github.com/jeremy-compostella/org-msg/issues/94

Signed-off-by: Christophe Troestler Christophe.Troestler@umons.ac.be

jeremy-compostella commented 3 years ago

I tested this pull request and it breaking a feature: each level should have a different color.

Chris00 commented 3 years ago

each level should have a different color.

Did you update org-msg-default-style (despite the fact that it is declared as a constant)? This is needed for the appropriate styles to be applied.

jeremy-compostella commented 3 years ago

Indeed, I forgot that eval-bufferdoes not re-evaluate the value of defcustom and as such changes of the default style where not loaded as my style. Could you put make 779 and 780 a unique line?

Chris00 commented 3 years ago

Done.