diff --git a/html2text.go b/html2text.go
index 8fe9000..c389222 100644
--- a/html2text.go
+++ b/html2text.go
@@ -241,7 +241,7 @@ func (ctx *textifyTraverseContext) handleElement(node *html.Node) error {
}
str := subCtx.buf.String()
if ctx.options.TextOnly {
- return ctx.emit(str + ".")
+ return ctx.emit(str)
}
return ctx.emit("*" + str + "*")