Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
typo
  • Loading branch information
jennspencer committed May 30, 2024
commit ef1c17b7b4fee02d72dc0d24fce40ef79039346b
2 changes: 1 addition & 1 deletion processor/compile/image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const image = (node: Image) => {
return `<Image ${attributes} />`;
}

return `![${node.alt ?? ''}](${src ? src : node.url}${node.title ? ` "${node.title}")` : ')'})`;
return `![${node.alt ?? ''}](${src ? src : node.url}${node.title ? ` "${node.title}")` : ')'}`;
}

export default image;