Skip to content

Commit

Permalink
update a member comment
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Jan 19, 2024
1 parent c6be4dc commit 2563ce0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/src/block_syntaxes/alert_block_syntax.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ class AlertBlockSyntax extends BlockSyntax {
parser.lines.any((line) => _contentLineRegExp.hasMatch(line.content));
}

// Whether this alert ends with a lazy continuation line.
// The definition of lazy continuation lines:
// https://spec.commonmark.org/0.30/#lazy-continuation-line
/// Whether this alert ends with a lazy continuation line.
///
/// The definition of lazy continuation lines:
/// https://spec.commonmark.org/0.30/#lazy-continuation-line
static bool _lazyContinuation = false;
static final _contentLineRegExp = RegExp(r'>?\s?(.*)*');

Expand Down

0 comments on commit 2563ce0

Please sign in to comment.