1 package bbcode_test 2 3 import ( 4 "os" 5 6 "vimagination.zapto.org/bbcode" 7 "vimagination.zapto.org/bbcode/bbcodehtml" 8 ) 9 10 func Example() { 11 parser := bbcode.New(bbcodehtml.All...) 12 13 parser.ConvertString(os.Stdout, `This is [b]Bold[/b], this is [i]Italic[/i], and this is a [url=http://www.example.com]link[/url].`) 14 15 // Output: 16 // This is <b>Bold</b>, this is <i>Italic</i>, and this is a <a href="http://www.example.com">link</a>. 17 } 18