That's not a highlight; that's a code block. And no, it's not appropriate to use it to highlight technical terms. it should only be used on blocks of code:
public bool IsActive
{
get { return _isActive; }
set { _isActive = value; }
}
or inline code: _log.Debug("Setting hyperspace mode");
You can occasionally get away with using it to call out things like class or object names ("Why must I initialize a Dictionary this way?"), and angle brackets hide unless you use <code blocks> to show them, but try to limit that. It gets annoying awful fast, to see code formatting littered throughout your text.
*characters). – Keith Thompson Nov 16 '12 at 18:07