Skip to content

Commit 8c4cbbd

Browse files
committed
Fix an ID bug reported by Marc
1 parent 55483a1 commit 8c4cbbd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/module.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl Input {
9595
("%", ""),
9696
("&", ""),
9797
("*", ""),
98-
(",", ""),
98+
(",", "-"),
9999
(".", "-"),
100100
("/", "-"),
101101
(":", "-"),
@@ -106,6 +106,7 @@ impl Input {
106106
("$", ""),
107107
("^", ""),
108108
("|", ""),
109+
("=", "-"),
109110
// Remove known semantic markup from the ID:
110111
("[package]", ""),
111112
("[option]", ""),

0 commit comments

Comments
 (0)