We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b1af11 commit 6b8b362Copy full SHA for 6b8b362
1 file changed
cmd/class.go
@@ -249,5 +249,6 @@ func (c *Command) makeClassName(str string) string {
249
str = strings.ReplaceAll(str, "%", "\\%")
250
str = strings.ReplaceAll(str, ":", "\\:")
251
str = strings.ReplaceAll(str, "~", "\\~")
252
+ str = strings.ReplaceAll(str, ".", "\\.")
253
return str
254
}
0 commit comments