package firewallconfigs_test import ( "fmt" "github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs" "strings" "testing" ) func TestRuleOperator_Markdown(t *testing.T) { var result = []string{} for _, def := range firewallconfigs.AllRuleOperators { def.Description = strings.ReplaceAll(def.Description, "", "`") def.Description = strings.ReplaceAll(def.Description, "", "`") var row = "## " + def.Name + "\n" row += "* 名称:" + def.Name + "\n" row += "* 代号:`" + def.Code + "`\n" row += "* 描述:" + def.Description + "\n" result = append(result, row) } fmt.Print(strings.Join(result, "\n") + "\n") }