Fix Ruby anti-pattern in Markdown
This commit is contained in:
parent
7b50a7c99d
commit
5348ee6278
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ module Gitlab
|
||||||
#
|
#
|
||||||
# Returns parsed text
|
# Returns parsed text
|
||||||
def parse(text)
|
def parse(text)
|
||||||
text = text.gsub(REFERENCE_PATTERN) do |match|
|
text.gsub!(REFERENCE_PATTERN) do |match|
|
||||||
prefix = $1 || ''
|
prefix = $1 || ''
|
||||||
reference = $2
|
reference = $2
|
||||||
identifier = $3 || $4 || $5
|
identifier = $3 || $4 || $5
|
||||||
|
@ -93,7 +93,7 @@ module Gitlab
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
text = text.gsub(EMOJI_PATTERN) do |match|
|
text.gsub!(EMOJI_PATTERN) do |match|
|
||||||
if valid_emoji?($2)
|
if valid_emoji?($2)
|
||||||
image_tag("emoji/#{$2}.png", size: "20x20", class: 'emoji', title: $1, alt: $1)
|
image_tag("emoji/#{$2}.png", size: "20x20", class: 'emoji', title: $1, alt: $1)
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue