Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/pkg/reporting/format/format.go
2070 views
1
package format
2
3
type ResultFormatter interface {
4
MakeBold(text string) string
5
CreateCodeBlock(title string, content string, language string) string
6
CreateTable(headers []string, rows [][]string) (string, error)
7
CreateLink(title string, url string) string
8
CreateHorizontalLine() string
9
}
10
11