diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-11-13 01:32:10 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-13 01:32:10 +0100 |
commit | 5b6eb504587df592e42690743bce4b41d4066d00 (patch) | |
tree | f894e6997c9e0398d1ce13bb56e1964dcf129752 /components/Sidebar/Backlinks.tsx | |
parent | e214bc388e545cf695e97a3a2e714d5dbb5f25c1 (diff) |
Feat: Markdown file previewing (#152)
* feat(md): initial support for md-roam
* feat(md): link support and more for md
* fix(md): add missing remark math package
Diffstat (limited to 'components/Sidebar/Backlinks.tsx')
-rw-r--r-- | components/Sidebar/Backlinks.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/Sidebar/Backlinks.tsx b/components/Sidebar/Backlinks.tsx index e115225..892af8c 100644 --- a/components/Sidebar/Backlinks.tsx +++ b/components/Sidebar/Backlinks.tsx @@ -59,6 +59,7 @@ export const Backlinks = (props: BacklinksProps) => { return ( <Box overflow="hidden" py={1} borderRadius="sm" width="100%" key={link}> <PreviewLink + linksByNodeId={linksByNodeId} nodeByCite={nodeByCite} setSidebarHighlightedNode={setSidebarHighlightedNode} href={`id:${link as string}`} |