> (setq org-html-text-markup-alist > '((bold . "<b>%s</b>") > (code . "<code class=\"code\">%s</code>") > (italic . "<i>%s</i>") > (strike-through . "<del>%s</del>") > (underline . "<span class=\"underline\">%s</span>") > (verbatim . "<code class=\"verbatim\">%s</code>")))
Since <code> is being used in two places, I added a class so that they could be differentiated in the CSS mark up. I want to add to the emphasis possibilities. Currently there are six and I believe I want / need a few more. I have looked at the code a little and found some old messages about the topic. There was a suggestion of something being added to the third party contributions but I didn’t see anything. I’m looking for any advice, suggestions, dangers, etc.. before diving into this experiment.
