chore: update tag regexp

This commit is contained in:
Steven 2022-08-25 23:58:03 +08:00
parent 57f51d1c58
commit 64332c3e6a
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ func (s *Server) registerTagRoutes(g *echo.Group) {
tagMapSet := make(map[string]bool) tagMapSet := make(map[string]bool)
r := regexp.MustCompile(`#([^\s]+?) `) r := regexp.MustCompile(`#([^\s#]+?) `)
if err != nil { if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to compile regexp").SetInternal(err) return echo.NewHTTPError(http.StatusInternalServerError, "Failed to compile regexp").SetInternal(err)
} }

View File

@ -11,7 +11,7 @@ export const TOAST_ANIMATION_DURATION = 400;
export const DAILY_TIMESTAMP = 3600 * 24 * 1000; export const DAILY_TIMESTAMP = 3600 * 24 * 1000;
// tag regex // tag regex
export const TAG_REG = /#(\S+?) /g; export const TAG_REG = /#([^\s#]+?) /g;
// markdown image regex // markdown image regex
export const IMAGE_URL_REG = /!\[.*?\]\((.+?)\)/g; export const IMAGE_URL_REG = /!\[.*?\]\((.+?)\)/g;