mirror of
https://github.com/alrayyes/wiki.git
synced 2025-05-31 19:31:00 +00:00
feat: include tag hierarchies in tag listing, sort tag listing
This commit is contained in:
parent
ad1f964a5f
commit
d2be097b76
2 changed files with 6 additions and 1 deletions
quartz/components/pages
|
@ -28,7 +28,11 @@ function TagContent(props: QuartzComponentProps) {
|
|||
: htmlToJsx(fileData.filePath!, tree)
|
||||
|
||||
if (tag === "/") {
|
||||
const tags = [...new Set(allFiles.flatMap((data) => data.frontmatter?.tags ?? []))]
|
||||
const tags = [
|
||||
...new Set(
|
||||
allFiles.flatMap((data) => data.frontmatter?.tags ?? []).flatMap(getAllSegmentPrefixes),
|
||||
),
|
||||
].sort((a, b) => a.localeCompare(b))
|
||||
const tagItemMap: Map<string, QuartzPluginData[]> = new Map()
|
||||
for (const tag of tags) {
|
||||
tagItemMap.set(tag, allPagesWithTag(tag))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue