GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Fork
: 0
johnpearcey
/
gitbucket_jkp
Browse code
(refs #945)Remove ?raw=true from url other than images
master
1 parent
2ab2172
commit
80ebd9fb0e347c2c0cadf0659715be1140c93b93
Naoki Takezoe
authored
on 18 Oct 2015
Patch
Unified
Split
Showing
1 changed file
+1
-1
■
■
■■■
src/main/scala/gitbucket/core/view/Markdown.scala
Ignore Space
Show notes
View
2
■
■
■■■
src/main/scala/gitbucket/core/view/Markdown.scala
t2
}
override
def
link
(
href
:
String
,
title
:
String
,
text
:
String
):
String
=
{
super
.
link
(
fixUrl
(
href
,
true
),
title
,
text
)
super
.
link
(
fixUrl
(
href
,
false
),
title
,
text
)
}
override
def
image
(
href
:
String
,
title
:
String
,
text
:
String
):
String
=
{
super
.
image
(
fixUrl
(
href
,
true
),
title
,
text
)
Show line notes below