-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Closed
Labels
Milestone
Description
This is a feature that I have been wanting, but always assumed would not be possible with Go templates. Now I think that it could be implemented.
Example:
single.html:
<div>
{{ with partial "boldtitle.html" . }}
{{ .Title }}
{{ end }}
</div>boldtitle.html:
<h1 class="bold">{{ inner }}</h1>The above example is obviously very simple, but I suspect people can imagine their own use of this.
chalin and luissantos