File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- import { apiCall , labels } from '.'
1+ import { apiCall } from '.'
22import {
33 normalizeComment ,
44 normalizeIssue ,
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ function customColor(md: MarkdownIt): void {
2020
2121 // Create opening tag token
2222 const tokenOpen = state . push ( 'html_inline' , '' , 0 )
23- tokenOpen . content = `<span style=\ "color:${ color } \ ">`
23+ tokenOpen . content = `<span style="color:${ color } ">`
2424
2525 // Create content token
26- const tokenContent = state . push ( 'text ' , '' , 0 )
27- tokenContent . content = content
26+ const tokenContent = state . push ( 'html_inline ' , '' , 0 )
27+ tokenContent . content = md . renderInline ( content )
2828
2929 // Create closing tag token
3030 const tokenClose = state . push ( 'html_inline' , '' , 0 )
You can’t perform that action at this time.
0 commit comments