diff --git a/packages/api/src/utils/parser.ts b/packages/api/src/utils/parser.ts index 3acd06886..67a8b1034 100644 --- a/packages/api/src/utils/parser.ts +++ b/packages/api/src/utils/parser.ts @@ -879,6 +879,12 @@ export const highlightToMarkdown = (highlight: Highlight): string => { return `> ${quote} ${labels ? `\n\n${labels}` : ''}${ note ? `\n\n${note}` : '' }` + } else if ( + highlight.highlightType == HighlightType.Note && + highlight.annotation + ) { + const note = highlight.annotation + return `${note}\n\n` } return ''