Introduction to Go Templates
Jun 13, 2025 · 2 min read · Using templates in Go is a great way to produce content in a dynamic way. Go makes it possible to prepare content for display as pure text (by using the text/template package or as HTML with proper encoding (by using the html/template package). Both ...
Join discussion