diff --git a/upub/core/src/model/actor.rs b/upub/core/src/model/actor.rs index 7680040..e62a339 100644 --- a/upub/core/src/model/actor.rs +++ b/upub/core/src/model/actor.rs @@ -26,7 +26,7 @@ impl From for Field { fn from(value: T) -> Self { Field { name: value.name().str().unwrap_or_default(), - value: value.value().str().unwrap_or_default(), + value: mdhtml::safe_html(value.value().unwrap_or_default()), field_type: "PropertyValue".to_string(), // TODO can we try parsing this instead?? verified_at: None, // TODO where does verified_at come from? extend apb maybe }