fix: tag support for non-latin alphabets (fixes #398)
This commit is contained in:
		
							parent
							
								
									b991cf2ee8
								
							
						
					
					
						commit
						8b63ff882a
					
				
					 3 changed files with 7 additions and 6 deletions
				
			
		| 
						 | 
					@ -44,7 +44,8 @@ TagList.css = `
 | 
				
			||||||
a.tag-link {
 | 
					a.tag-link {
 | 
				
			||||||
  border-radius: 8px;
 | 
					  border-radius: 8px;
 | 
				
			||||||
  background-color: var(--highlight);
 | 
					  background-color: var(--highlight);
 | 
				
			||||||
  padding: 0.2rem 0.5rem;
 | 
					  padding: 0.2rem 0.4rem;
 | 
				
			||||||
 | 
					  margin: 0 0.1rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
`
 | 
					`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,7 +41,7 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options> | undefined>
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // slug them all!!
 | 
					            // 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
 | 
					            // fill in frontmatter
 | 
				
			||||||
            file.data.frontmatter = {
 | 
					            file.data.frontmatter = {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -116,7 +116,7 @@ const calloutRegex = new RegExp(/^\[\!(\w+)\]([+-]?)/)
 | 
				
			||||||
const calloutLineRegex = new RegExp(/^> *\[\!\w+\][+-]?.*$/, "gm")
 | 
					const calloutLineRegex = new RegExp(/^> *\[\!\w+\][+-]?.*$/, "gm")
 | 
				
			||||||
// (?:^| )   -> non-capturing group, tag should start be separated by a space or be the start of the line
 | 
					// (?:^| )   -> 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
 | 
					// #(\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> = (
 | 
					export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options> | undefined> = (
 | 
				
			||||||
  userOpts,
 | 
					  userOpts,
 | 
				
			||||||
| 
						 | 
					@ -382,8 +382,8 @@ export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options>
 | 
				
			||||||
        plugins.push(() => {
 | 
					        plugins.push(() => {
 | 
				
			||||||
          return (tree: Root, file) => {
 | 
					          return (tree: Root, file) => {
 | 
				
			||||||
            const base = pathToRoot(file.data.slug!)
 | 
					            const base = pathToRoot(file.data.slug!)
 | 
				
			||||||
            findAndReplace(tree, tagRegex, (value: string, tag: string) => {
 | 
					            findAndReplace(tree, tagRegex, (_value: string, tag: string) => {
 | 
				
			||||||
              if (file.data.frontmatter) {
 | 
					              if (file.data.frontmatter && !file.data.frontmatter.tags.includes(tag)) {
 | 
				
			||||||
                file.data.frontmatter.tags.push(tag)
 | 
					                file.data.frontmatter.tags.push(tag)
 | 
				
			||||||
              }
 | 
					              }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -398,7 +398,7 @@ export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options>
 | 
				
			||||||
                children: [
 | 
					                children: [
 | 
				
			||||||
                  {
 | 
					                  {
 | 
				
			||||||
                    type: "text",
 | 
					                    type: "text",
 | 
				
			||||||
                    value,
 | 
					                    value: `#${tag}`,
 | 
				
			||||||
                  },
 | 
					                  },
 | 
				
			||||||
                ],
 | 
					                ],
 | 
				
			||||||
              }
 | 
					              }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue