I am planning to write an article that would use two colors to distinguish between "map" and "territory", kinda like in The Neverending Story. In other words, instead of:
The sentence 'snow is white' is true if and only if snow is white.
I want to write something like:
Snow is white if and only if snow is white.
In general, the quote marks have the advantage of unlimited nesting, but I don't need it now; my article will have exactly two levels, not more. On the other hand, I feel that the bicolor version may be easier to perceive instinctively; the words referring to the map and the territory are not only surrounded by marks, they look differently by themselves. Also, quote marks are generally used for various purposes (quoting, irony, etc.), so authors emphasise the "this refers to map, as opposed to the territory" usage by not saying merely "X", but "the sentence X", "the words X", "the text X", etc. By removing such words, even my example here is shorter.
So, how to do this technically?
- If I understand it correctly, Markdown doesn't support colors, but you can replace Markdown editor with Rich text editor in user settings, and the Rich text editor supports colors. Am I right?
- Alternatively, instead of colors, I could use italics or bold font, just like I did in the example here. Not only is this simple in Markdown editor, but as an advantage, if some blind people read this, their software would probably pronounce those words in a different voice, making the article more accessible. (Is this true? Can anyone confirm?) The minor disadvantage is that I will not be able to use the italics or bold font in the usual way in the article, but I think I can live with that. Though, as you see, I love using italics, so I would probably use bold font for the map-words.
- (For the sake of completeness, using CAPITAL LETTERS would also be an option, but it is an ugly option I would rather avoid.)
- And maybe more of the above could be combined, e.g. the words referring to the map could be written using italics and different color. That would make them even more stand out of the remaining text. Is it worth the extra effort?
Is there another option I missed here?
Which option would you prefer? I care about everyone's opinion, but the perspectives of colorblind or blind readers are especially valuable, because using a wrong option might completely ruin the article for them.
(LessWrong dev here)
Not an answer to your question, but FYI we deliberately don't support colors in our standard editor, because the naive way to implement would result in copy-paste errors when people copy their google doc over to the LessWrong editor. (i.e. I believe it pastes in text as "explicitly black" rather than "non-colored" and links as "blue", overwriting LW's default green links)
I think there are occasional places where colored text would be preferable but it's unfortunately tricky to make it usable-when-actually-important without screwing things up a lot of other times.
It's probably been brought up before, but colors are also not a particularly accessible feature for those who cannot perceive them. There are some easy (partial) solutions [1] that can result in this being less of an issue, but simply not supporting colors is certainly the easiest. Monospace is supported in markdown using the code ticks; perhaps it would be useful to be able to explicitly specify serif, sans, and script fonts as well? (Perhaps we already can and I just haven't noticed?) With the four font types, times three formatting options (bold, italic, normal), we'd have 12 available "colors" that should all be pretty easy to differentiate. I suspect that many would already be more than it's easy for most readers to keep track of anyway, so it should be more than enough.
[^1] Allowing bright orange and dark blue provides a high-contrast color set that can be distinguished by most individuals with various types of color-blindness. Standard and inverted are also easy for most sighted persons to see. Still, that even leaves out those without sight unless their screen readers are set up to detect those signals.
As a note, I see new LessWrong posts first in my RSS reader, which tends to ignore most formatting choices. It would be helpful to know at the start of a post that I should click through to the original page in order to get the best experience if you decide to use formatting to mark different concepts within the text.