aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--unxhtmlify.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/unxhtmlify.go b/unxhtmlify.go
index 97c29d7..4e7b175 100644
--- a/unxhtmlify.go
+++ b/unxhtmlify.go
@@ -4,6 +4,7 @@ import (
"bufio"
"fmt"
"os"
+ "strings"
)
func main() {
@@ -17,5 +18,5 @@ func main() {
}
func unxhtmlify_line(s string) string {
- return s
+ return strings.Replace(s, " /", "", 1)
}