mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 12:11:16 -05:00
Merge pull request #4081 from tomasibarrab/master
FIX: Length for hashtags, increased to 101 characters.
This commit is contained in:
commit
fb6bd10d4c
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
**/
|
**/
|
||||||
Discourse.Dialect.inlineRegexp({
|
Discourse.Dialect.inlineRegexp({
|
||||||
start: '#',
|
start: '#',
|
||||||
matcher: /^#([\w-:]{1,50})/i,
|
matcher: /^#([\w-:]{1,101})/i,
|
||||||
spaceOrTagBoundary: true,
|
spaceOrTagBoundary: true,
|
||||||
|
|
||||||
emitter: function(matches) {
|
emitter: function(matches) {
|
||||||
|
|
Loading…
Reference in a new issue