diff options
Diffstat (limited to 'modules/markup/mdstripper/mdstripper_test.go')
-rw-r--r-- | modules/markup/mdstripper/mdstripper_test.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/markup/mdstripper/mdstripper_test.go b/modules/markup/mdstripper/mdstripper_test.go index 157fe1975b..9efcc35949 100644 --- a/modules/markup/mdstripper/mdstripper_test.go +++ b/modules/markup/mdstripper/mdstripper_test.go @@ -53,6 +53,20 @@ A HIDDEN ` + "`" + `GHOST` + "`" + ` IN THIS LINE. []string{ "link", }}, + { + "Simply closes: #29 yes", + []string{ + "Simply closes: #29 yes", + }, + []string{}, + }, + { + "Simply closes: !29 yes", + []string{ + "Simply closes: !29 yes", + }, + []string{}, + }, } for _, test := range list { |