}
func (c countribCount) AuthorLink() string {
- if c.GitHubAuthor.HtmlURL != "" {
- return fmt.Sprintf("[@%s](%s)", c.GitHubAuthor.Login, c.GitHubAuthor.HtmlURL)
+ if c.GitHubAuthor.HTMLURL != "" {
+ return fmt.Sprintf("[@%s](%s)", c.GitHubAuthor.Login, c.GitHubAuthor.HTMLURL)
}
if !strings.Contains(c.Author, "@") {
type gitHubCommit struct {
Author gitHubAuthor `json:"author"`
- HtmlURL string `json:"html_url"`
+ HTMLURL string `json:"html_url"`
}
type gitHubAuthor struct {
ID int `json:"id"`
Login string `json:"login"`
- HtmlURL string `json:"html_url"`
+ HTMLURL string `json:"html_url"`
AvatarURL string `json:"avatar_url"`
}
ID int `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
- HtmlURL string `json:"html_url"`
+ HTMLURL string `json:"html_url"`
Stars int `json:"stargazers_count"`
Contributors []gitHubContributor
}
type gitHubContributor struct {
ID int `json:"id"`
Login string `json:"login"`
- HtmlURL string `json:"html_url"`
+ HTMLURL string `json:"html_url"`
Contributions int `json:"contributions"`
}
return fmt.Sprintf(issueLinkTemplate, id, id)
},
"commitURL": func(info gitInfo) string {
- if info.GitHubCommit.HtmlURL == "" {
+ if info.GitHubCommit.HTMLURL == "" {
return ""
}
- return fmt.Sprintf(linkTemplate, info.Hash, info.GitHubCommit.HtmlURL)
+ return fmt.Sprintf(linkTemplate, info.Hash, info.GitHubCommit.HTMLURL)
},
"authorURL": func(info gitInfo) string {
if info.GitHubCommit.Author.Login == "" {
return ""
}
- return fmt.Sprintf(linkTemplate, "@"+info.GitHubCommit.Author.Login, info.GitHubCommit.Author.HtmlURL)
+ return fmt.Sprintf(linkTemplate, "@"+info.GitHubCommit.Author.Login, info.GitHubCommit.Author.HTMLURL)
},
}