fix(web): multiple mentions should not nest
This commit is contained in:
parent
5c97b40ea6
commit
b2d23b7c4c
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ use crate::prelude::*;
|
|||
use apb::{field::OptionalString, target::Addressed, ActivityMut, Base, Collection, CollectionMut, Object, ObjectMut};
|
||||
|
||||
lazy_static::lazy_static! {
|
||||
static ref REGEX: Regex = regex::Regex::new("<a href=\"(.+)\" class=\"u-url mention\">@(\\w+)(@\\w+|)</a>").expect("failed compiling @ regex");
|
||||
static ref REGEX: Regex = regex::Regex::new("<a href=\"([-a-zA-Z0-9()@:%_\\+.~#?&\\/=]+)\" class=\"u-url mention\">@(\\w+)(@\\w+|)</a>").expect("failed compiling @ regex");
|
||||
}
|
||||
|
||||
#[component]
|
||||
|
|
Loading…
Reference in a new issue