tagRegex property

RegExp tagRegex
final

matches supported HTML tags (start and end)

Implementation

static final RegExp tagRegex = RegExp(
    r'<\/?[a-zA-Z0-9]+(\s+[a-zA-Z0-9\-]+(="[a-zA-Z0-9#:;\-\.\/]*")?)*\s*>');