| {{with .PAst}}{{node . $.FSet}}{{end}}{{/* |
| |
| --------------------------------------- |
| |
| */}}{{with .PDoc}}{{if not $.IsMain}}PACKAGE |
| |
| package {{.Name}} |
| import "{{.ImportPath}}" |
| |
| {{else}}COMMAND DOCUMENTATION |
| |
| {{end}}{{comment_text .Doc " " "\t"}} |
| {{example_text "" $.Examples $.FSet " "}}{{/* |
| |
| --------------------------------------- |
| |
| */}}{{with .Consts}} |
| CONSTANTS |
| |
| {{range .}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}}{{end}} |
| {{end}}{{/* |
| |
| --------------------------------------- |
| |
| */}}{{with .Vars}} |
| VARIABLES |
| |
| {{range .}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}}{{end}} |
| {{end}}{{/* |
| |
| --------------------------------------- |
| |
| */}}{{with .Funcs}} |
| FUNCTIONS |
| |
| {{range .}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}} |
| {{example_text .Name $.Examples $.FSet " "}} |
| {{end}}{{end}}{{/* |
| |
| --------------------------------------- |
| |
| */}}{{with .Types}} |
| TYPES |
| |
| {{range .}}{{$tname := .Name}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}} |
| {{range .Consts}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}} |
| {{end}}{{range .Vars}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}} |
| {{end}}{{example_text .Name $.Examples $.FSet " "}} |
| {{range .Funcs}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}} |
| {{example_text .Name $.Examples $.FSet " "}} |
| {{end}}{{range .Methods}}{{node .Decl $.FSet}} |
| {{comment_text .Doc " " "\t"}} |
| {{$name := printf "%s_%s" $tname .Name}}{{example_text $name $.Examples $.FSet " "}} |
| {{end}}{{end}}{{end}}{{/* |
| |
| --------------------------------------- |
| |
| */}}{{with .Bugs}} |
| BUGS |
| |
| {{range .}}{{comment_text . " " "\t"}} |
| {{end}}{{end}}{{with .Notes}} |
| {{range $marker, $content := .}} |
| {{$marker}} |
| |
| {{range $content}}{{comment_text . " " "\t"}} |
| {{end}}{{end}}{{end}}{{end}}{{/* |
| |
| --------------------------------------- |
| |
| */}}{{with .Dirs}} |
| SUBDIRECTORIES |
| {{if $.DirFlat}}{{range .List}}{{if .HasPkg}} |
| {{.Path}}{{end}}{{end}} |
| {{else}}{{range .List}} |
| {{repeat `. ` .Depth}}{{.Name}}{{end}} |
| {{end}}{{end}} |