src/main/kotlin/de/uapcore/lightpit/viewmodel/Issues.kt

changeset 207
479dd7993ef9
parent 186
05eec764facd
child 231
dcb1d5a7ea3a
equal deleted inserted replaced
206:fe4de34822a5 207:479dd7993ef9
76 val renderer = HtmlRenderer.builder(options).build() 76 val renderer = HtmlRenderer.builder(options).build()
77 val process = fun(it: String) = renderer.render(parser.parse(it)) 77 val process = fun(it: String) = renderer.render(parser.parse(it))
78 78
79 issue.description = process(issue.description?:"") 79 issue.description = process(issue.description?:"")
80 for (comment in comments) { 80 for (comment in comments) {
81 comment.comment = process(comment.comment) 81 comment.commentFormatted = process(comment.comment)
82 } 82 }
83 } 83 }
84 } 84 }
85 85
86 class IssueEditView( 86 class IssueEditView(

mercurial