(refs #917)Fix incorrent HTML escape

This commit is contained in:
Naoki Takezoe
2015-10-01 13:04:56 +09:00
parent 4eab07ffaf
commit 75d085a2c4

View File

@@ -101,7 +101,7 @@ object Markdown {
override def text(text: String): String = {
// convert commit id and username to link.
val t1 = if(enableRefsLink) convertRefsLinks(text, repository, "issue:") else text
val t1 = if(enableRefsLink) convertRefsLinks(text, repository, "issue:", false) else text
// convert task list to checkbox.
val t2 = if(enableTaskList) convertCheckBox(t1, hasWritePermission) else t1