You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var sanitizer = new HtmlSanitizer();
sanitizer.AllowedSchemes.Add("data");
Above is allowing all data URIs, where i need to allow only data:image URI. I don't want to allow other once like dat:text/html etc. Is it possible to allow only data:image?
The text was updated successfully, but these errors were encountered:
var sanitizer = new HtmlSanitizer();
sanitizer.AllowedSchemes.Add("data");
Above is allowing all data URIs, where i need to allow only data:image URI. I don't want to allow other once like dat:text/html etc. Is it possible to allow only data:image?
The text was updated successfully, but these errors were encountered: