I see the generator code currently uses the older @"" syntax for defining multiline strings, which means you have to fully left-justify in order to avoid encoding indentation to the final string.
In case you haven't heard of them, just wanted to drop a tip about raw string literals! They're my favorite newish addition to C# 🙂 It makes defining multi-line literals WAY nicer, while keeping your code looking like proper idiomatic C#.
I see the generator code currently uses the older
@""syntax for defining multiline strings, which means you have to fully left-justify in order to avoid encoding indentation to the final string.In case you haven't heard of them, just wanted to drop a tip about raw string literals! They're my favorite newish addition to C# 🙂 It makes defining multi-line literals WAY nicer, while keeping your code looking like proper idiomatic C#.