add dir to allowed attributes

This commit is contained in:
Trinity Pointard 2021-01-02 00:13:54 +01:00
parent 3a6c1aeeef
commit fdb58215c0

View file

@ -11,14 +11,13 @@ use std::{
borrow::{Borrow, Cow}, borrow::{Borrow, Cow},
fmt::{self, Display}, fmt::{self, Display},
io::Write, io::Write,
iter,
ops::Deref, ops::Deref,
}; };
lazy_static! { lazy_static! {
static ref CLEAN: Builder<'static> = { static ref CLEAN: Builder<'static> = {
let mut b = Builder::new(); let mut b = Builder::new();
b.add_generic_attributes(iter::once("id")) b.add_generic_attributes(&["id", "dir"])
.add_tags(&["iframe", "video", "audio", "label", "input"]) .add_tags(&["iframe", "video", "audio", "label", "input"])
.id_prefix(Some("postcontent-")) .id_prefix(Some("postcontent-"))
.url_relative(UrlRelative::Custom(Box::new(url_add_prefix))) .url_relative(UrlRelative::Custom(Box::new(url_add_prefix)))