blob: 9b4dc7b9a0a4654b9baa6a64673e83ab2e4a0f1e [file] [log] [blame]
// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'delimiter_syntax.dart';
/// Matches strikethrough syntax according to the GFM spec.
class StrikethroughSyntax extends DelimiterSyntax {
StrikethroughSyntax()
: super(
'~+',
requiresDelimiterRun: true,
allowIntraWord: true,
tags: [DelimiterTag('del', 2)],
);
}