@@ -23,9 +23,8 @@ func trim(s string) string {
}
func stripComment(s string) string {
idx := strings.Index(s, separatorComment)
if idx > -1 {
s = s[:idx]
if strings.HasPrefix(s, separatorComment) {
return ""
return s
The note is not visible to the blocked user.