On Fri, Aug 21, 2015 at 09:13:13PM -0700, David A. Gershman wrote: > I've been reading all evening about HTML exporting, style sheets, etc. > Maybe I've been inundated with information, but I haven't been able to > determine an answer to my question: can text in the middle of a > paragraph by styled? For example: > > * Heading 1 > This is the paragraph body that will allow *bold* > or /italic/ or even _underline_, but what if I want > only THIS word to have styling? Such as making it > red to indicate importance?
Also, note that the above examples are exported by default as: - <b>bold</b> - <i>italic</i> - <span class="underline">underline</span> So you can redefine the css associated with them if you want. Also, you can customize `org-html-text-markup-alist' to change the markup. rick