@@ -281,7 +281,7 @@ class LinkSyntax extends DelimiterSyntax {
281
281
parser.advanceBy (1 );
282
282
final next = parser.charAt (parser.pos);
283
283
// TODO: Follow the backslash spec better here.
284
- // http ://spec.commonmark.org/0.29 /#backslash-escapes
284
+ // https ://spec.commonmark.org/0.30 /#backslash-escapes
285
285
if (next != $backslash && next != $gt) {
286
286
buffer.writeCharCode (char);
287
287
}
@@ -327,7 +327,7 @@ class LinkSyntax extends DelimiterSyntax {
327
327
/// Returns the link if it was successfully created, `null` otherwise.
328
328
InlineLink ? _parseInlineBareDestinationLink (InlineParser parser) {
329
329
// According to
330
- // [CommonMark](http ://spec.commonmark.org/0.28 /#link-destination):
330
+ // [CommonMark](https ://spec.commonmark.org/0.30 /#link-destination):
331
331
//
332
332
// > A link destination consists of [...] a nonempty sequence of
333
333
// > characters [...], and includes parentheses only if (a) they are
@@ -348,7 +348,7 @@ class LinkSyntax extends DelimiterSyntax {
348
348
final next = parser.charAt (parser.pos);
349
349
// Parentheses may be escaped.
350
350
//
351
- // http ://spec.commonmark.org/0.28 /#example-467
351
+ // https ://spec.commonmark.org/0.30 /#example-494
352
352
if (next != $backslash && next != $lparen && next != $rparen) {
353
353
buffer.writeCharCode (char);
354
354
}
0 commit comments