go-text-template 1.0.64

There is a newer version of this package available.
See the version list below for details.
dotnet add package go-text-template --version 1.0.64
                    
NuGet\Install-Package go-text-template -Version 1.0.64
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="go-text-template" Version="1.0.64" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="go-text-template" Version="1.0.64" />
                    
Directory.Packages.props
<PackageReference Include="go-text-template" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add go-text-template --version 1.0.64
                    
#r "nuget: go-text-template, 1.0.64"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package go-text-template@1.0.64
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=go-text-template&version=1.0.64
                    
Install as a Cake Addin
#tool nuget:?package=go-text-template&version=1.0.64
                    
Install as a Cake Tool

text/template

NuGet

This project is a C# implementation of Go's template engine using ANTLR for parsing. It began as an experiment to see whether OpenAI Codex could port the Go implementation to .NET. Claude.AI helped with explanations and refinements along the way. The source code in this repository was largely produced by Codex with input from Claude.AI, and this README itself was also authored using Codex.

The original Go package can be found here:

This library now contains virtually all functionality from the original Go text/template package. Parse templates with Template.New("name").Parse(text) and execute them with Execute to perform variable substitution, loops and conditionals. Internally the engine uses an ANTLR-generated lexer and parser.

Features

  • Replace {{ variable }} placeholders with values from dictionaries or model objects.
  • Conditional blocks with if, else if and else clauses.
  • for loops and Go-style range loops over arrays, collections and maps.
  • Built-in functions: eq, ne, numeric comparisons (lt, le, gt, ge), logical operators (and, or, not) supporting multiple arguments.
  • Basic pipelines with the lower function for transforming output, and call to invoke registered functions.
  • Declare variables with {{ $name := value }} and reference them later using $name.
  • Access nested properties, map keys and indexes, including dynamic indexing via variables.
  • Whitespace trimming with {{- and -}} and comment syntax {{/* ... */}}.
  • Support for with, define, template and block directives.

Example Scenarios

// -- 1. Variable Interpolation
// Access properties
{{ .Property }}

// Nested property access
{{ .User.Name }}

// Index arrays or slices
{{ .Items[0] }}

// Access map entries
{{ .Data.key }}

// Control whitespace
{{- .Name -}}
// Declare and use a variable
{{ $name := "Hi there" }}{{ $name }}

// -- 2. Conditional Statements
// Basic if blocks
{{ if condition }}...{{ end }}

// if/else blocks
{{ if condition }}...{{ else }}...{{ end }}

// else if chains
{{ if condition }}...{{ else if other }}...{{ end }}

// Supported conditions include
{{ if .IsActive }}
{{ if eq .Status "active" }}
{{ if .User }}

// -- 3. Loop Statements
// Iterate slices or arrays
{{ range .Items }}...{{ end }}

// Capture index/value
{{ range $i, $v := .Items }}...{{ end }}
// Range with index/item variables
{{ range $index, $item := .Items }}{{ $index }}: {{ $item }}{{ end }}

// Iterate maps
{{ range .Map }}...{{ end }}

// Map key/value variables
{{ range $k, $v := .Map }}...{{ end }}

// Handle empty collections
{{ range .Items }}...{{ else }}...{{ end }}

// -- 4. Built-in Functions
// Equality and inequality
// eq, ne

// Numeric comparisons
// lt, le, gt, ge

// Logical operators
// and, or, not

// Registered functions can be invoked via call
{{ call "Add" 1 2 }}

const string template = "{{ call \"Add\" 1 2 }}";
Template.RegisterFunction("Add", new Func<int, int, int>((a, b) => a + b));
var result = Template.New("calc").Parse(template).Execute(new {});
// result == "3"

// -- 5. Comments
// Embedding comments
{{/* comment */}}

// -- 6. Pipelines
// Chaining functions with |
{{ .Name | lower }}

// Available pipeline helpers include
// lower - convert to lowercase
// print - concatenate values using default formatting
// printf - printf-style formatting using SprintfFormatter
// html - HTML escape the value
// js - JavaScript escape the value
// urlquery - escape for URL query parameters
// len - length of a collection or string
// index - retrieve an element by index or key
// slice - slice strings or lists
// call - invoke a function value

Not Implemented Yet

  • Custom functions beyond basic comparisons and boolean operators.
  • Custom delimiter support.

Usage

var tmpl = Template.New("hello").Parse("Hello {{ .Name }}!");
var result = tmpl.Execute(new { Name = "World" });
Console.WriteLine(result); // Hello World!

Example Template

// Define a named template using conditionals and a range loop
string tmpl = @"
{{ define \"letter\" }}
Dear {{ .Name }},
{{ if .Attended }}
It was a pleasure to see you.
{{ else }}
Sorry you couldn't make it.
{{ end }}
You brought:
{{ range .Items }}- {{ . }}
{{ end }}
Thank you for the lovely {{ .Gift }}.
{{ end }}
{{ template \"letter\" . }}";

// Execute the template with a model
var output = Template.New("letter").Parse(tmpl).Execute(new
{
    Name = "Bob",
    Gift = "toaster",
    Attended = false,
    Items = new[] { "book", "pen" }
});

// Example output:
// Dear Bob,
// Sorry you couldn't make it.
// You brought:
// - book
// - pen
// Thank you for the lovely toaster.
Console.WriteLine(output);

Template Definitions

string tmpl = @"
{{ define \"user\" }}
Name: {{ .Name }}
Age: {{ .Age }}
{{ end }}
{{ template \"user\" . }}";
var userResult = Template.New("user").Parse(tmpl).Execute(new { Name = "Jane", Age = 42 });
// userResult == "Name: Jane\nAge: 42\n"

Calling Functions with call

Template.RegisterFunction("Add", new Func<int, int, int>((a, b) => a + b));
string callTmpl = "{{ call \"Add\" 2 3 }}";
string callResult = Template.New("calc").Parse(callTmpl).Execute(new {});
// callResult == "5"

See the unit tests for more examples covering loops, conditionals and range expressions. The YmlTemplateFileTest shows how to render a full Kubernetes manifest from tests/TestData/template.yml with the expected output in tests/TestData/expected.yml.

Benchmark Results

The following microbenchmarks were run using BenchmarkDotNet on .NET 9.0. Each benchmark renders the same short template:

Hello {{ .Name }}! {{ range .Items }}{{ . }} {{ end }}

The model contains five strings in the Items list so every engine performs a small loop. BenchmarkDotNet ran each test using its default configuration which executes a warm‑up phase followed by enough iterations (13–96 in our runs) to collect roughly one second of timing data. The Go implementation was benchmarked with go test -bench . using the equivalent template and data.

Method Mean Error StdDev
GoTextTemplate (.NET) 14.52 us 0.18 us 0.15 us
Handlebars.Net 1,857 us 32 us 29 us
Scriban 14.62 us 0.29 us 0.81 us
DotLiquid 13.79 us 0.27 us 0.28 us
Go text/template 1.69 us 0.00 us 0.00 us

Claude's suggestions

https://gist.github.com/yetanotherchris/c80d0fadb5a2ee5b4beb0a4384020dbf.js

License

This project is released under the MIT license. Source code was produced by OpenAI Codex with assistance from Claude.AI. This README was written using OpenAI Codex.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.70 182 6/15/2025
1.0.67 179 6/15/2025
1.0.64 149 6/15/2025
1.0.62 159 6/15/2025
1.0.60 159 6/14/2025
1.0.57 172 6/14/2025
1.0.55 178 6/14/2025
1.0.53 177 6/14/2025
1.0.51 185 6/14/2025
1.0.48 185 6/14/2025
1.0.46 188 6/14/2025
1.0.43 318 6/12/2025
1.0.41 315 6/12/2025
1.0.37 311 6/12/2025
1.0.35 313 6/12/2025
1.0.30 298 6/12/2025
1.0.28 298 6/12/2025
1.0.27-pr-47 306 6/12/2025
1.0.26-pr-47 308 6/12/2025
1.0.25-pr-47 310 6/12/2025
1.0.24-pr-47 307 6/12/2025
1.0.23-pr-46 302 6/12/2025
1.0.22 308 6/12/2025
1.0.21-pr-44 300 6/12/2025
1.0.20 307 6/12/2025
1.0.19-pr-43 304 6/12/2025
1.0.18 307 6/12/2025
1.0.17-pr-42 304 6/12/2025
1.0.16 292 6/12/2025
1.0.15-pr-41 303 6/12/2025
1.0.14 312 6/12/2025
1.0.13-pr-40 304 6/12/2025
1.0.11 314 6/12/2025
1.0.10-pr-38 306 6/12/2025
1.0.9 313 6/12/2025
1.0.8-pr-36 302 6/12/2025
1.0.7-pr-35 313 6/12/2025
1.0.4 296 6/12/2025
1.0.3-pr-34 307 6/12/2025