all repos — website @ ee0d8aed15902b6b76a14e2612c5ec661b320dc3

My website

reduce diffs to typescript builder

Alan Pearce
commit

ee0d8aed15902b6b76a14e2612c5ec661b320dc3

parent

27448f33dce9141316bb4ea6d905305d8a846cac

1 file changed, 3 insertions(+), 3 deletions(-)

changed files
M cmd/build/atom.gocmd/build/atom.go
@@ -7,7 +7,7 @@
. "alanpearce.eu/website/internal/config" ) -func makeTagURI(config Config, specific string) string { +func MakeTagURI(config Config, specific string) string { return "tag:" + config.OriginalDomain + "," + config.DomainStartDate + ":" + specific }
@@ -18,7 +18,7 @@ Type string `xml:"type,attr"`
Href string `xml:"href,attr"` } -func makeLink(url string) Link { +func MakeLink(url string) Link { return Link{ Rel: "alternate", Type: "text/html",
@@ -38,6 +38,6 @@ Link Link `xml:"link"`
Id string `xml:"id"` Updated time.Time `xml:"updated"` Summary string `xml:"summary,omitempty"` - Author string `xml:"author>name"` Content FeedContent `xml:"content"` + Author string `xml:"author>name"` }