fix MD pill serialization

pull/21833/head
Matthew Hodgson 2018-05-20 14:32:20 +01:00
parent c5676eef89
commit 9aba046f21
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class PlainWithPillsSerializer {
case 'plain':
return node.data.get('completion');
case 'md':
return `[${ node.text }](${ node.data.get('href') })`;
return `[${ node.data.get('completion') }](${ node.data.get('href') })`;
case 'id':
return node.data.get('completionId') || node.data.get('completion');
}