fix MD pill serialization
This commit is contained in:
parent
c5676eef89
commit
9aba046f21
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue