Home | History | Annotate | Download | only in html
      1 // Copyright 2015 The Go Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style
      3 // license that can be found in the LICENSE file.
      4 
      5 package html_test
      6 
      7 import (
      8 	"fmt"
      9 	"html"
     10 )
     11 
     12 func ExampleEscapeString() {
     13 	const s = `"Fran & Freddie's Diner" <tasty (a] example.com>`
     14 	fmt.Println(html.EscapeString(s))
     15 	// Output: &#34;Fran &amp; Freddie&#39;s Diner&#34; &lt;tasty (a] example.com&gt;
     16 }
     17 
     18 func ExampleUnescapeString() {
     19 	const s = `&quot;Fran &amp; Freddie&#39;s Diner&quot; &lt;tasty (a] example.com&gt;`
     20 	fmt.Println(html.UnescapeString(s))
     21 	// Output: "Fran & Freddie's Diner" <tasty (a] example.com>
     22 }
     23