Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: handle special characters in tag URLs
When the tag contains special characters like '#', the generated URL becomes invalid due to the presence of these characters. This commit fixes the issue by encoding the tag using `encodeURIComponent` before constructing the URL. Changes: - Use `encodeURIComponent` to encode the tag to ensure special characters are properly handled. - Update the href attribute in the <a> tag to use the encoded tag. Now, tags with special characters (e.g., 'C#') will generate valid URLs.
- Loading branch information