NewUntrusted labels a string as untrusted external content.
(s string)
| 24 | |
| 25 | // NewUntrusted labels a string as untrusted external content. |
| 26 | func NewUntrusted(s string) Untrusted { |
| 27 | return Untrusted{raw: s} |
| 28 | } |
| 29 | |
| 30 | // NewUntrustedBytes labels a byte slice as untrusted external content. |
| 31 | func NewUntrustedBytes(b []byte) Untrusted { |
no outgoing calls