curiouslychase / _goorgeous

[DEPRECATED] A go org syntax parser to html
MIT License
160 stars 28 forks source link

Customize emphasis exportation #63

Closed amosbird closed 7 years ago

amosbird commented 7 years ago

Hi, I've defined (strike-through . "<strong style=\"color : red;\">%s</strong>") in emacs so that strike-through gets exported as red bold text. I wonder if there is a way to do that in goorgeous.

curiouslychase commented 7 years ago

goorgeous currently renders your org files the way blackfriday renders markdown. It's agnostic of style since it's content specific and the styling is done through your stylesheets definitions.

Strikethrough uses the <del> tag, so you can style it in your stylesheet with del { /* my styles */ }.