aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/google/safehtml/README.md
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-01-22 16:07:17 +0100
committerTaras Madan <tarasmadan@google.com>2025-01-23 10:42:36 +0000
commit7b4377ad9d8a7205416df8d6217ef2b010f89481 (patch)
treee6fec4fd12ff807a16d847923f501075bf71d16c /vendor/github.com/google/safehtml/README.md
parent475a4c203afb8b7d3af51c4fd32bb170ff32a45e (diff)
vendor: delete
Diffstat (limited to 'vendor/github.com/google/safehtml/README.md')
-rw-r--r--vendor/github.com/google/safehtml/README.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/github.com/google/safehtml/README.md b/vendor/github.com/google/safehtml/README.md
deleted file mode 100644
index d3c9676d1..000000000
--- a/vendor/github.com/google/safehtml/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Safe HTML for Go
-
-`safehtml` provides immutable string-like types that wrap web types such as
-HTML, JavaScript and CSS. These wrappers are safe by construction against XSS
-and similar web vulnerabilities, and they can only be interpolated in safe ways.
-You can read more about our approach to web security in our
-[whitepaper](https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/42934.pdf),
-or this [OWASP talk](https://www.youtube.com/watch?v=ccfEu-Jj0as).
-
-Additional subpackages provide APIs for managing exceptions to the
-safety rules, and a template engine with a syntax and interface that closely
-matches [`html/template`](https://golang.org/pkg/html/template/). You can refer
-to the [godoc](https://pkg.go.dev/github.com/google/safehtml?tab=doc)
-for each (sub)package for the API documentation and code examples.
-More end-to-end demos are available in `example_test.go`.
-
-This is not an officially supported Google product.