Anthony Ewell wrote:
> When reading and sending HTML, is there a way to force Mozilla to
> display bold as bold and not bracket it with asterisks ("*")?
If you want Mozilla to hide the signature separators and the symbols
around *bold* /italic/ _underlined_ and |code| words in plain text
messages amend <profile>/chrome/userContent.css as follows:
.moz-txt-tag { display: none; }
If you only want to alter some types use
.moz-txt-star > .moz-txt-tag { display: none; }
.moz-txt-slash > .moz-txt-tag { display: none; }
.moz-txt-underscore > .moz-txt-tag { display: none; }
.moz-txt-verticalline > .moz-txt-tag { display: none; }
.moz-txt-sig > .moz-txt-tag { display: none; }