Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,12 @@ public class VT100EscapeSequences
{
private const char Esc = (char)0x1B;

private string endSequence = Esc + "[0m";
private readonly string endSequence = Esc + "[0m";

// For code blocks, [500@ make sure that the whole line has background color.
private const string LongBackgroundCodeBlock = "[500@";

private PSMarkdownOptionInfo options;
private readonly PSMarkdownOptionInfo options;

/// <summary>
/// Initializes a new instance of the <see cref="VT100EscapeSequences"/> class.
Expand Down