BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
d993f666
Commit
d993f666
authored
Sep 13, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix HTML entities being parsed in GFM
Also fixes the spec so that it actually tests the thing it says it's testing. Hooray! Closes #1308
parent
85def2d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
markdown.rb
lib/gitlab/markdown.rb
+16
-6
gitlab_markdown_helper_spec.rb
spec/helpers/gitlab_markdown_helper_spec.rb
+1
-0
No files found.
lib/gitlab/markdown.rb
View file @
d993f666
...
...
@@ -26,13 +26,13 @@ module Gitlab
# => "<img alt=\":trollface:\" class=\"emoji\" src=\"/images/trollface.png" title=\":trollface:\" />
module
Markdown
REFERENCE_PATTERN
=
%r{
(
[^
\w
&;])?
# Prefix (1)
(
\W
)?
# Prefix (1)
( # Reference (2)
@([
\w\.
_]+) # User name (3)
|[#!$](
\d
+) # Issue/MR/Snippet ID (4)
|([
\h
]{6,40}) # Commit ID (5)
)
(
[^
\w
&;])?
# Suffix (6)
(
\W
)?
# Suffix (6)
}x
.
freeze
EMOJI_PATTERN
=
%r{(:(
\S
+):)}
.
freeze
...
...
@@ -84,6 +84,13 @@ module Gitlab
#
# Returns parsed text
def
parse
(
text
)
parse_references
(
text
)
if
@project
parse_emoji
(
text
)
text
end
def
parse_references
(
text
)
# parse reference links
text
.
gsub!
(
REFERENCE_PATTERN
)
do
|
match
|
prefix
=
$1
||
''
...
...
@@ -91,13 +98,18 @@ module Gitlab
identifier
=
$3
||
$4
||
$5
suffix
=
$6
||
''
if
ref_link
=
reference_link
(
reference
,
identifier
)
# Avoid HTML entities
if
prefix
.
ends_with?
(
'&'
)
||
suffix
.
starts_with?
(
';'
)
match
elsif
ref_link
=
reference_link
(
reference
,
identifier
)
prefix
+
ref_link
+
suffix
else
match
end
end
if
@project
end
end
def
parse_emoji
(
text
)
# parse emoji
text
.
gsub!
(
EMOJI_PATTERN
)
do
|
match
|
if
valid_emoji?
(
$2
)
...
...
@@ -106,8 +118,6 @@ module Gitlab
match
end
end
text
end
# Private: Checks if an emoji icon exists in the image asset directory
...
...
spec/helpers/gitlab_markdown_helper_spec.rb
View file @
d993f666
...
...
@@ -31,6 +31,7 @@ describe GitlabMarkdownHelper do
end
it
"should not touch HTML entities"
do
@project
.
issues
.
stub
(
:where
).
with
(
id:
'39'
).
and_return
([
issue
])
actual
=
expected
=
"We'll accept good pull requests."
gfm
(
actual
).
should
==
expected
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment