Using Third-Party Libraries in Go
So far we've covered command-line applications that only use modules in the standard library This post will explore using third-party modules by building a conversion tool from Markdown to HTML ## Before We Start: Initializing Go Modules ```bash go mod init github.com/caraya/markdown-converter ``` Then, whenever we want to install a third-party package, we run the following command ```bash go get
{{.Metadata.Title}}
Created on: {{.Metadata.Date}}
Filed Under: {{range $index, $tag := .Metadata.Tags}}{{if $index}}, {{end}}{{$tag}}{{end}}