diff --git a/quartz/components/PageList.tsx b/quartz/components/PageList.tsx index 28e35d8b9..b91b05db3 100644 --- a/quartz/components/PageList.tsx +++ b/quartz/components/PageList.tsx @@ -40,9 +40,10 @@ export const PageList: QuartzComponent = ({ cfg, fileData, allFiles, limit }: Pr {list.map((page) => { const title = page.frontmatter?.title const tags = page.frontmatter?.tags ?? [] + const tagsStr = JSON.stringify(tags) return ( -
@@ -68,8 +69,4 @@ PageList.css = `
.section h3 {
margin: 0;
}
-
-.section > .tags {
- margin: 0;
-}
`
diff --git a/quartz/components/pages/FolderContent.tsx b/quartz/components/pages/FolderContent.tsx
index ab3338b36..b5dadd667 100644
--- a/quartz/components/pages/FolderContent.tsx
+++ b/quartz/components/pages/FolderContent.tsx
@@ -56,30 +56,47 @@ export default ((opts?: Partial