HTML: {{.IncantationCoverage | printf "%.02f"}}% of incantations w/ descriptions
Docstrings: {{.DocstringCoverage | printf "%.02f"}}% of incantations w/ descriptions
Combined: {{.CombinedCoverage | printf "%.02f"}}% of incantations w/ descriptions
Normalized: {{.NormalizedCoverage | printf "%.02f"}}% of non-empty identifiers
ValidHTML: {{.ValidHTMLCoverage | printf "%.02f"}}% of non-empty identifiers
Structured: {{.StructuredCoverage | printf "%.02f"}}% of incantations w/ desc
Identifier |
Incantations |
% of Package |
:func: |
:class: |
:meth: |
Has Description |
Fully Normalized |
Valid HTML |
{{range .Identifiers}}
{{.Identifier}} |
{{.Incantations}} |
{{.PercentOfPackage | printf "%.02f"}} |
{{ if eq .FuncRole "YES" }}
YES |
{{ else }}
NO |
{{ end }}
{{ if eq .ClassRole "YES" }}
YES |
{{ else }}
NO |
{{ end }}
{{ if eq .MethRole "YES" }}
YES |
{{ else }}
NO |
{{ end }}
{{.HasDescription}} |
{{ if eq .Normalized "YES" }}
YES |
{{ else if eq .Normalized "NO" }}
NO |
{{ else if eq .ValidHTML "" }}
EMPTY |
{{ end }}
{{ if eq .ValidHTML "YES" }}
YES |
{{ else if eq .ValidHTML "NO" }}
NO |
{{ else if eq .ValidHTML "" }}
EMPTY |
{{ end }}
{{end}}