Package htmlescape provides tools for safely escaping text within HTML, replacing any special-characters into HTML-entities, for the Go programming language.
Go to file
Charles Iliya Krempeaux 853ab9c1e0 correction 2024-02-13 08:41:23 -08:00
LICENSE initial commits 2024-02-12 21:25:50 -08:00
README.md initial commits 2024-02-12 21:27:24 -08:00
append.go initial commits 2024-02-12 21:35:22 -08:00
appendbytes_test.go initial commits 2024-02-13 08:40:54 -08:00
appendrune_test.go initial commits 2024-02-12 21:35:22 -08:00
appendstring_test.go initial commits 2024-02-13 08:40:54 -08:00
buffersize.go initial commits 2024-02-12 21:33:10 -08:00
errors.go initial commits 2024-02-12 21:32:52 -08:00
saferune.go initial commits 2024-02-12 21:32:35 -08:00
saferune_test.go initial commits 2024-02-12 21:32:35 -08:00
string.go correction 2024-02-13 08:41:23 -08:00
write.go initial commits 2024-02-12 21:35:42 -08:00
writebytes_test.go initial commits 2024-02-12 21:35:42 -08:00
writerune_test.go initial commits 2024-02-12 21:35:42 -08:00
writestring_test.go initial commits 2024-02-12 21:35:42 -08:00

README.md

go-htmlescape

Package htmlescape provides tools for safely escaping text within HTML, replacing any special-characters into HTML-entities, for the Go programming language.

Documention

Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-htmlescape

GoDoc

Import

To import package htmlescape use import code like the follownig:

import "sourcecode.social/reiver/go-htmlescape"

Installation

To install package htmlescape do the following:

GOPROXY=direct go get https://sourcecode.social/reiver/go-htmlescape

Author

Package htmlescape was written by Charles Iliya Krempeaux