Jacky Zhao
2023-08-23 8b63ff882ae28b1a1774293673a7531463d6a5e5
fix: tag support for non-latin alphabets (fixes #398)
3 files modified
13 ■■■■ changed files
quartz/components/TagList.tsx 3 ●●●● patch | view | raw | blame | history
quartz/plugins/transformers/frontmatter.ts 2 ●●● patch | view | raw | blame | history
quartz/plugins/transformers/ofm.ts 8 ●●●● patch | view | raw | blame | history
quartz/components/TagList.tsx
@@ -44,7 +44,8 @@
a.tag-link {
  border-radius: 8px;
  background-color: var(--highlight);
  padding: 0.2rem 0.5rem;
  padding: 0.2rem 0.4rem;
  margin: 0 0.1rem;
}
`
quartz/plugins/transformers/frontmatter.ts
@@ -41,7 +41,7 @@
            }
            // slug them all!!
            data.tags = data.tags?.map((tag: string) => slugTag(tag)) ?? []
            data.tags = [...new Set(data.tags?.map((tag: string) => slugTag(tag)))] ?? []
            // fill in frontmatter
            file.data.frontmatter = {
quartz/plugins/transformers/ofm.ts
@@ -116,7 +116,7 @@
const calloutLineRegex = new RegExp(/^> *\[\!\w+\][+-]?.*$/, "gm")
// (?:^| )   -> non-capturing group, tag should start be separated by a space or be the start of the line
// #(\w+)    -> tag itself is # followed by a string of alpha-numeric characters
const tagRegex = new RegExp(/(?:^| )#([\w-_\/]+)/, "g")
const tagRegex = new RegExp(/(?:^| )#(\p{L}+)/, "gu")
export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options> | undefined> = (
  userOpts,
@@ -382,8 +382,8 @@
        plugins.push(() => {
          return (tree: Root, file) => {
            const base = pathToRoot(file.data.slug!)
            findAndReplace(tree, tagRegex, (value: string, tag: string) => {
              if (file.data.frontmatter) {
            findAndReplace(tree, tagRegex, (_value: string, tag: string) => {
              if (file.data.frontmatter && !file.data.frontmatter.tags.includes(tag)) {
                file.data.frontmatter.tags.push(tag)
              }
@@ -398,7 +398,7 @@
                children: [
                  {
                    type: "text",
                    value,
                    value: `#${tag}`,
                  },
                ],
              }