Searched defs:MarkdownDelimiter (Results 1 – 1 of 1) sorted by relevance
2817 private struct MarkdownDelimiter struct2819 size_t iStart; /// the index where this delimiter starts2820 int count; /// the length of this delimeter's start sequence2821 int macroLevel; /// the count of nested DDoc macros when the delimiter is started2822 … bool leftFlanking; /// whether the delimiter is left-flanking, as defined by the CommonMark spec2823 … bool rightFlanking; /// whether the delimiter is right-flanking, as defined by the CommonMark spec2824 bool atParagraphStart; /// whether the delimiter is at the start of a paragraph2825 char type; /// the type of delimiter, defined by its starting character2828 @property bool isValid() const { return count != 0; } in isValid()2831 void invalidate() { count = 0; } in invalidate()