When a markdown comment get's formatted and a line is broken up, comment dashes (//) are used instead of the markdown dashes (///),
Input
/// This exceeds the line limit
public class Foo {...}
Expected
/// This exceeds
/// the line limit
public class Foo {...}
Actual
/// This exceeds
// the line limit
public class Foo {...}