Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
9ab1fe5e
Commit
9ab1fe5e
authored
Dec 08, 2016
by
Munken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working inline math filter
parent
6992ac11
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
0 deletions
+61
-0
lib/banzai/filter/inline_math_filter.rb
lib/banzai/filter/inline_math_filter.rb
+29
-0
lib/banzai/pipeline/gfm_pipeline.rb
lib/banzai/pipeline/gfm_pipeline.rb
+1
-0
spec/lib/banzai/filter/inline_math_filter_spec.rb
spec/lib/banzai/filter/inline_math_filter_spec.rb
+31
-0
No files found.
lib/banzai/filter/inline_math_filter.rb
0 → 100644
View file @
9ab1fe5e
require
'uri'
module
Banzai
module
Filter
# HTML filter that adds class="code math" and removes the dolar sign in $`2+2`$.
#
class
InlineMathFilter
<
HTML
::
Pipeline
::
Filter
def
call
doc
.
xpath
(
"descendant-or-self::text()[substring(., string-length(.)) = '$']"
\
"/following-sibling::*[name() = 'code']"
\
"/following-sibling::text()[starts-with(.,'$')]"
).
each
do
|
el
|
closing
=
el
code
=
el
.
previous
code
[
:class
]
=
'code math'
opening
=
code
.
previous
closing
.
content
=
closing
.
content
[
1
..-
1
]
opening
.
content
=
opening
.
content
[
0
..-
2
]
closing
end
puts
doc
doc
end
end
end
end
lib/banzai/pipeline/gfm_pipeline.rb
View file @
9ab1fe5e
...
...
@@ -6,6 +6,7 @@ module Banzai
Filter
::
SyntaxHighlightFilter
,
Filter
::
SanitizationFilter
,
Filter
::
InlineMathFilter
,
Filter
::
UploadLinkFilter
,
Filter
::
VideoLinkFilter
,
Filter
::
ImageLinkFilter
,
...
...
spec/lib/banzai/filter/inline_math_filter_spec.rb
0 → 100644
View file @
9ab1fe5e
require
'spec_helper'
describe
Banzai
::
Filter
::
InlineMathFilter
,
lib:
true
do
include
FilterSpecHelper
it
'leaves regular inline code unchanged'
do
doc
=
filter
(
"<code>2+2</code>"
)
expect
(
doc
.
to_s
).
to
eq
"<code>2+2</code>"
end
it
'removes surrounding dollar signs and adds class'
do
doc
=
filter
(
"$<code>2+2</code>$"
)
expect
(
doc
.
to_s
).
to
eq
'<code class="code math">2+2</code>'
end
it
'only removes surrounding dollar signs'
do
doc
=
filter
(
"test $<code>2+2</code>$ test"
)
expect
(
doc
.
to_s
).
to
eq
'test <code class="code math">2+2</code> test'
end
it
'only removes surrounding single dollar sign'
do
doc
=
filter
(
"test $$<code>2+2</code>$$ test"
)
expect
(
doc
.
to_s
).
to
eq
'test $<code class="code math">2+2</code>$ test'
end
it
'ignores cases with missing dolar sign'
do
doc
=
filter
(
"test $<code>2+2</code> test"
)
expect
(
doc
.
to_s
).
to
eq
'test $<code>2+2</code> test'
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