disallow _ in tags because they interfer with markdownify
This commit is contained in:
parent
87dafeb67b
commit
88e642ffdb
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ module Diaspora
|
||||||
|
|
||||||
def format_tags(text, opts={})
|
def format_tags(text, opts={})
|
||||||
return text if opts[:plain_text]
|
return text if opts[:plain_text]
|
||||||
regex = /(^|\s)#(\w+)/
|
regex = /(^|\s)#([a-zA-Z0-9\-]+)/
|
||||||
form_message = text.gsub(regex) do |matched_string|
|
form_message = text.gsub(regex) do |matched_string|
|
||||||
"#{$~[1]}<a href=\"/tags/#{$~[2]}\" class=\"tag\">##{$~[2]}</a>"
|
"#{$~[1]}<a href=\"/tags/#{$~[2]}\" class=\"tag\">##{$~[2]}</a>"
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue