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
382a0aa6
Commit
382a0aa6
authored
Apr 22, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Gitlab::Markdown::TableOfContentsFilter
Removes header and table of contents processing from Redcarpet renderer.
parent
286c9e68
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
168 additions
and
28 deletions
+168
-28
gitlab_markdown_helper.rb
app/helpers/gitlab_markdown_helper.rb
+0
-1
markdown.rb
lib/gitlab/markdown.rb
+5
-0
table_of_contents_filter.rb
lib/gitlab/markdown/table_of_contents_filter.rb
+62
-0
gitlab_html.rb
lib/redcarpet/render/gitlab_html.rb
+0
-10
gitlab_markdown_helper_spec.rb
spec/helpers/gitlab_markdown_helper_spec.rb
+0
-17
table_of_contents_filter_spec.rb
spec/lib/gitlab/markdown/table_of_contents_filter_spec.rb
+101
-0
No files found.
app/helpers/gitlab_markdown_helper.rb
View file @
382a0aa6
...
...
@@ -34,7 +34,6 @@ module GitlabMarkdownHelper
# see https://github.com/vmg/redcarpet#darling-i-packed-you-a-couple-renderers-for-lunch
rend
=
Redcarpet
::
Render
::
GitlabHTML
.
new
(
self
,
user_color_scheme_class
,
{
with_toc_data:
true
,
safe_links_only:
true
,
# Handled further down the line by HTML::Pipeline::SanitizationFilter
escape_html:
false
...
...
lib/gitlab/markdown.rb
View file @
382a0aa6
...
...
@@ -38,6 +38,7 @@ module Gitlab
autoload
:LabelReferenceFilter
,
'gitlab/markdown/label_reference_filter'
autoload
:MergeRequestReferenceFilter
,
'gitlab/markdown/merge_request_reference_filter'
autoload
:SnippetReferenceFilter
,
'gitlab/markdown/snippet_reference_filter'
autoload
:TableOfContentsFilter
,
'gitlab/markdown/table_of_contents_filter'
autoload
:UserReferenceFilter
,
'gitlab/markdown/user_reference_filter'
# Public: Parse the provided text with GitLab-Flavored Markdown
...
...
@@ -81,6 +82,9 @@ module Gitlab
asset_root:
Gitlab
.
config
.
gitlab
.
url
,
asset_host:
Gitlab
::
Application
.
config
.
asset_host
,
# TableOfContentsFilter
no_header_anchors:
options
[
:no_header_anchors
],
# ReferenceFilter
current_user:
current_user
,
only_path:
options
[
:reference_only_path
],
...
...
@@ -117,6 +121,7 @@ module Gitlab
HTML
::
Pipeline
::
SanitizationFilter
,
Gitlab
::
Markdown
::
EmojiFilter
,
Gitlab
::
Markdown
::
TableOfContentsFilter
,
Gitlab
::
Markdown
::
UserReferenceFilter
,
Gitlab
::
Markdown
::
IssueReferenceFilter
,
...
...
lib/gitlab/markdown/table_of_contents_filter.rb
0 → 100644
View file @
382a0aa6
require
'html/pipeline/filter'
module
Gitlab
module
Markdown
# HTML filter that adds an anchor child element to all Headers in a
# document, so that they can be linked to.
#
# Generates the Table of Contents with links to each header. See Results.
#
# Based on HTML::Pipeline::TableOfContentsFilter.
#
# Context options:
# :no_header_anchors - Skips all processing done by this filter.
#
# Results:
# :toc - String containing Table of Contents data as a `ul` element with
# `li` child elements.
class
TableOfContentsFilter
<
HTML
::
Pipeline
::
Filter
PUNCTUATION_REGEXP
=
/[^\p{Word}\- ]/u
def
call
return
doc
if
context
[
:no_header_anchors
]
result
[
:toc
]
=
""
headers
=
Hash
.
new
(
0
)
doc
.
css
(
'h1, h2, h3, h4, h5, h6'
).
each
do
|
node
|
text
=
node
.
text
id
=
text
.
downcase
id
.
gsub!
(
PUNCTUATION_REGEXP
,
''
)
# remove punctuation
id
.
gsub!
(
' '
,
'-'
)
# replace spaces with dash
id
.
squeeze!
(
' -'
)
# replace multiple spaces or dashes with one
uniq
=
(
headers
[
id
]
>
0
)
?
"-
#{
headers
[
id
]
}
"
:
''
headers
[
id
]
+=
1
if
header_content
=
node
.
children
.
first
href
=
"
#{
id
}#{
uniq
}
"
push_toc
(
href
,
text
)
header_content
.
add_previous_sibling
(
anchor_tag
(
href
))
end
end
result
[
:toc
]
=
%Q{<ul class="section-nav">
\n
#{
result
[
:toc
]
}
</ul>}
unless
result
[
:toc
].
empty?
doc
end
private
def
anchor_tag
(
href
)
%Q{<a id="
#{
href
}
" class="anchor" href="#
#{
href
}
" aria-hidden="true"></a>}
end
def
push_toc
(
href
,
text
)
result
[
:toc
]
<<
%Q{<li><a href="#
#{
href
}
">
#{
text
}
</a></li>
\n
}
end
end
end
end
lib/redcarpet/render/gitlab_html.rb
View file @
382a0aa6
...
...
@@ -50,16 +50,6 @@ class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
h
.
link_to_gfm
(
content
,
link
,
title:
title
)
end
def
header
(
text
,
level
)
if
@options
[
:no_header_anchors
]
"<h
#{
level
}
>
#{
text
}
</h
#{
level
}
>"
else
id
=
ActionController
::
Base
.
helpers
.
strip_tags
(
h
.
gfm
(
text
)).
downcase
()
\
.
gsub
(
/[^a-z0-9_-]/
,
'-'
).
gsub
(
/-+/
,
'-'
).
gsub
(
/^-/
,
''
).
gsub
(
/-$/
,
''
)
"<h
#{
level
}
id=
\"
#{
id
}
\"
>
#{
text
}
<a href=
\"\#
#{
id
}
\"
></a></h
#{
level
}
>"
end
end
def
postprocess
(
full_document
)
full_document
.
gsub!
(
"ftp://smb:"
,
"smb://"
)
...
...
spec/helpers/gitlab_markdown_helper_spec.rb
View file @
382a0aa6
...
...
@@ -207,23 +207,6 @@ describe GitlabMarkdownHelper do
end
describe
"#markdown"
do
# TODO (rspeicher) - This block tests multiple different contexts. Break this up!
it
"should add ids and links to headers"
do
# Test every rule except nested tags.
text
=
'..Ab_c-d. e..'
id
=
'ab_c-d-e'
expect
(
markdown
(
"#
#{
text
}
"
)).
to
match
(
%r{<h1 id="
#{
id
}
">
#{
text
}
<a href="[^"]*#
#{
id
}
"></a></h1>}
)
expect
(
markdown
(
"#
#{
text
}
"
,
{
no_header_anchors
:true
})).
to
eq
(
"<h1>
#{
text
}
</h1>"
)
id
=
'link-text'
expect
(
markdown
(
"# [link text](url) ![img alt](url)"
)).
to
match
(
%r{<h1 id="
#{
id
}
"><a href="[^"]*url">link text</a> <img[^>]*><a href="[^"]*#
#{
id
}
"></a></h1>}
)
end
# REFERENCES (PART TWO: THE REVENGE) ---------------------------------------
it
"should handle references in headers"
do
...
...
spec/lib/gitlab/markdown/table_of_contents_filter_spec.rb
0 → 100644
View file @
382a0aa6
# encoding: UTF-8
require
'spec_helper'
module
Gitlab::Markdown
describe
TableOfContentsFilter
do
def
filter
(
html
,
options
=
{})
described_class
.
call
(
html
,
options
)
end
def
header
(
level
,
text
)
"<h
#{
level
}
>
#{
text
}
</h
#{
level
}
>
\n
"
end
it
'does nothing when :no_header_anchors is truthy'
do
exp
=
act
=
header
(
1
,
'Header'
)
expect
(
filter
(
act
,
no_header_anchors:
1
).
to_html
).
to
eq
exp
end
it
'does nothing with empty headers'
do
exp
=
act
=
header
(
1
,
nil
)
expect
(
filter
(
act
).
to_html
).
to
eq
exp
end
1
.
upto
(
6
)
do
|
i
|
it
"processes h
#{
i
}
elements"
do
html
=
header
(
i
,
"Header
#{
i
}
"
)
doc
=
filter
(
html
)
expect
(
doc
.
css
(
"h
#{
i
}
a"
).
first
.
attr
(
'id'
)).
to
eq
"header-
#{
i
}
"
end
end
describe
'anchor tag'
do
it
'has an `anchor` class'
do
doc
=
filter
(
header
(
1
,
'Header'
))
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'class'
)).
to
eq
'anchor'
end
it
'links to the id'
do
doc
=
filter
(
header
(
1
,
'Header'
))
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'href'
)).
to
eq
'#header'
end
describe
'generated IDs'
do
it
'translates spaces to dashes'
do
doc
=
filter
(
header
(
1
,
'This header has spaces in it'
))
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'id'
)).
to
eq
'this-header-has-spaces-in-it'
end
it
'squeezes multiple spaces and dashes'
do
doc
=
filter
(
header
(
1
,
'This---header is poorly-formatted'
))
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'id'
)).
to
eq
'this-header-is-poorly-formatted'
end
it
'removes punctuation'
do
doc
=
filter
(
header
(
1
,
"This, header! is, filled. with @ punctuation?"
))
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'id'
)).
to
eq
'this-header-is-filled-with-punctuation'
end
it
'appends a unique number to duplicates'
do
doc
=
filter
(
header
(
1
,
'One'
)
+
header
(
2
,
'One'
))
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'id'
)).
to
eq
'one'
expect
(
doc
.
css
(
'h2 a'
).
first
.
attr
(
'id'
)).
to
eq
'one-1'
end
it
'supports Unicode'
do
doc
=
filter
(
header
(
1
,
'한글'
))
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'id'
)).
to
eq
'한글'
expect
(
doc
.
css
(
'h1 a'
).
first
.
attr
(
'href'
)).
to
eq
'#한글'
end
end
end
describe
'result'
do
def
result
(
html
)
HTML
::
Pipeline
.
new
([
described_class
]).
call
(
html
)
end
let
(
:results
)
{
result
(
header
(
1
,
'Header 1'
)
+
header
(
2
,
'Header 2'
))
}
let
(
:doc
)
{
Nokogiri
::
XML
::
DocumentFragment
.
parse
(
results
[
:toc
])
}
it
'is contained within a `ul` element'
do
expect
(
doc
.
children
.
first
.
name
).
to
eq
'ul'
expect
(
doc
.
children
.
first
.
attr
(
'class'
)).
to
eq
'section-nav'
end
it
'contains an `li` element for each header'
do
expect
(
doc
.
css
(
'li'
).
length
).
to
eq
2
links
=
doc
.
css
(
'li a'
)
expect
(
links
.
first
.
attr
(
'href'
)).
to
eq
'#header-1'
expect
(
links
.
first
.
text
).
to
eq
'Header 1'
expect
(
links
.
last
.
attr
(
'href'
)).
to
eq
'#header-2'
expect
(
links
.
last
.
text
).
to
eq
'Header 2'
end
end
end
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