For example, I want class fields, method names, and properties to be boldfaced, but I don't want them to be boldfaced inside method bodies. e.g.,
public static void **WriteStuff**(string notEvenUsed) {
var x = 0;
Console.WriteLine("Stuff");
}
I want WriteStuff to be in bold, but not WriteLine, x, or notEvenUsed.