From 076eb82ad4e9e781a6c7aceedfcd9948057dc49e Mon Sep 17 00:00:00 2001 From: jiangchong Date: Fri, 28 Apr 2023 23:35:21 +0800 Subject: [PATCH] delete annotation that do not support script --- lib/src/models/documents/attribute.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/models/documents/attribute.dart b/lib/src/models/documents/attribute.dart index 83861aa6..b1df087f 100644 --- a/lib/src/models/documents/attribute.dart +++ b/lib/src/models/documents/attribute.dart @@ -364,7 +364,6 @@ class TokenAttribute extends Attribute { const TokenAttribute(String val) : super('token', AttributeScope.IGNORE, val); } -// `script` is supposed to be inline attribute but it is not supported yet class ScriptAttribute extends Attribute { ScriptAttribute(ScriptAttributes? val) : super('script', AttributeScope.INLINE, val?.value);