builder.go
1package mango
2
3import (
4 "time"
5)
6
7// Builder is the interface of a man page builder.
8type Builder interface {
9 Heading(section uint, title, description string, ts time.Time)
10 Paragraph()
11 Indent(n int)
12 IndentEnd()
13 TaggedParagraph(indentation int)
14 List(text string)
15 Section(text string)
16 EndSection()
17 Text(text string)
18 TextBold(text string)
19 TextItalic(text string)
20 String() string
21}