Update StrikeHandler.java

Add support for <strike> html tag.
This commit is contained in:
Rohit 2023-10-15 17:30:21 +05:30 committed by GitHub
parent 2ea148c30a
commit ece87e3e1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ public class StrikeHandler extends TagHandler {
@NonNull @NonNull
@Override @Override
public Collection<String> supportedTags() { public Collection<String> supportedTags() {
return Arrays.asList("s", "del"); return Arrays.asList("s", "del", "strike");
} }
@Nullable @Nullable