mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-24 05:15:27 +00:00
* fix(reporting): Markdown and Jira exporter fixes * removed the code duplication between the Markdown and Jira exporter * markdown requires at least 3 dashes in the cells to separate headers from contents in a table * fixed the Jira link creation in the description * Jira requires at least 4 dashes for a horizontal line * added tests * Jira doesn't use dashed separators between table headers and contents * fix(reporting): Markdown and Jira exporter fixes * satisfying the linter * minor syntax changes --------- Co-authored-by: Mzack9999 <mzack9999@protonmail.com>
10 lines
292 B
Go
10 lines
292 B
Go
package format
|
|
|
|
type ResultFormatter interface {
|
|
MakeBold(text string) string
|
|
CreateCodeBlock(title string, content string, language string) string
|
|
CreateTable(headers []string, rows [][]string) (string, error)
|
|
CreateLink(title string, url string) string
|
|
CreateHorizontalLine() string
|
|
}
|