We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 928cacd commit c315749Copy full SHA for c315749
utils/utils.ts
@@ -157,7 +157,7 @@ export function getLinkToGuide(guide: Guide, page: GuidePage): string {
157
export function urlify(input: string, shouldRemoveBrackets: boolean): string {
158
if (shouldRemoveBrackets)
159
input = removeBrackets(input)
160
- return input.toLowerCase().replace(/[():"'-]/g, "").trim().replace(/ +/g, "-")
+ return input.toLowerCase().replace(/[():"'?,-]/g, "").trim().replace(/ +/g, "-")
161
}
162
163
export function removeBrackets(input: string) {
0 commit comments