Scriban 5.7.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 7.0 .NET Standard 2.0
dotnet add package Scriban --version 5.7.0
NuGet\Install-Package Scriban -Version 5.7.0
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="Scriban" Version="5.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Scriban --version 5.7.0
#r "nuget: Scriban, 5.7.0"
#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.
// Install Scriban as a Cake Addin
#addin nuget:?package=Scriban&version=5.7.0

// Install Scriban as a Cake Tool
#tool nuget:?package=Scriban&version=5.7.0

scriban Build Status Coverage Status NuGet

<img align="right" width="160px" height="160px" src="img/scriban.png">

Scriban is a fast, powerful, safe and lightweight scripting language and engine for .NET, which was primarily developed for text templating with a compatibility mode for parsing liquid templates.

// Parse a scriban template
var template = Template.Parse("Hello {{name}}!");
var result = template.Render(new { Name = "World" }); // => "Hello World!" 

Parse a Liquid template using the Liquid language:

// Parse a liquid template
var template = Template.ParseLiquid("Hello {{name}}!");
var result = template.Render(new { Name = "World" }); // => "Hello World!" 

The language is very versatile, easy to read and use, similar to liquid templates:

var template = Template.Parse(@"
<ul id='products'>
  {{ for product in products }}
    <li>
      <h2>{{ product.name }}</h2>
           Price: {{ product.price }}
           {{ product.description | string.truncate 15 }}
    </li>
  {{ end }}
</ul>
");
var result = template.Render(new { Products = this.ProductList });

Scriban can also be used in pure scripting context without templating ({{ and }}) and can help you to create your own small DSL.

NOTICE

By default, Properties and methods of .NET objects are automatically exposed with lowercase and _ names. It means that a property like MyMethodIsNice will be exposed as my_method_is_nice. This is the default convention, originally to match the behavior of liquid templates. If you want to change this behavior, you need to use a MemberRenamer delegate

New in 3.0+

  • AST is now fully visitable with ScriptVisitor. You can now access Parent on any ScriptNode object and navigate the AST.
    • Improve AST round-trip by preserving whitespaces around template enter{{ and exit}}
  • Several new language features:
    • Hexadecimal/binary numbers: 0x1ef or 0b101010
    • Support for large integers
    • New parametric functions: func sub(x,y = 1, z...); ret x - y - z[0]; end
    • New inline functions: sub(x,y) = x - y
    • Optional member access with ?. instead of regular . (e.g a?.b?.c)
    • Conditional expressions: cond ? a : b
  • Separate language mode (via ScriptLang enum) from template/scripting parsing mode (ScriptMode).
  • New language parsing mode Scientific, in addition to default Scriban and Liquid language mode.
  • More fine-grained options on the TemplateContext to define scripting behaviors (EnableRelaxedTargetAccess, EnableRelaxedMemberAccess, EnableRelaxedFunctionAccess, EnableRelaxedIndexerAccess, EnableNullIndexer)
  • New object.eval and object.eval_template function to evaluate Scriban expressions/templates at runtime.
  • Better support for IFormattable objects.

Features

  • Very efficient, fast parser and a lightweight runtime. CPU and Garbage Collector friendly.
  • Powered by a Lexer/Parser providing a full Abstract Syntax Tree, fast, versatile and robust, more efficient than regex based parsers.
    • Precise source code location (path, column and line) for error reporting
    • Write an AST to a script textual representation, with Template.ToText, allowing to manipulate scripts in memory and re-save them to the disk, useful for roundtrip script update scenarios
  • Compatible with liquid by using the Template.ParseLiquid method
    • While the liquid language is less powerful than scriban, this mode allows to migrate from liquid to scriban language easily
    • With the AST to text mode, you can convert a liquid script to a scriban script using Template.ToText on a template parsed with Template.ParseLiquid
    • As the liquid language is not strictly defined and there are in fact various versions of liquid syntax, there are restrictions while using liquid templates with scriban, see the document liquid support in scriban for more details.
  • Extensible runtime providing many extensibility points
  • Support for async/await evaluation of scripts (e.g Template.RenderAsync)
  • Precise control of whitespace text output
  • Full featured language including if/else/for/while, expressions (x = 1 + 2), conditions... etc.
  • Function calls and pipes (myvar | string.capitalize)
  • Complex objects (javascript/json like objects x = {mymember: 1}) and arrays (e.g x = [1,2,3,4])
  • Allow to pass a block of statements to a function, typically used by the wrap statement
  • Several built-in functions:
  • Multi-line statements without having to embrace each line by {{...}}
  • Safe parser and safe runtime, allowing you to control what objects and functions are exposed

Syntax Coloring

You can install the Scriban Extension for Visual Studio Code to get syntax coloring for scriban scripts (without HTML) and scriban html files.

Documentation

Binaries

Scriban is available as a NuGet package: NuGet

Compatible with the following .NET Standard 2.0+ (New in 3.0)

For support for older framework (.NET 3.5, 4.0, 4.5, .NET Standard 1.1, 1.3, they are only provided in older Scriban 2.x, which is no longer supported.

Also the Scriban.Signed NuGet package provides signed assemblies.

Source Embedding

Starting with Scriban 3.2.1+, the package comes with source included so that you can internalize your usage of Scriban into your project. This can be useful in an environment where you can't easily consume NuGet references (e.g Roslyn Source Generators).

WARNING: Currently, the Scriban sources are not set as readonly, so you should not modify Scriban sources in that mode as it will modify the sources for other projects using Scriban on your machine. Use this feature at your own risks!

In order to activate this feature you need to:

  • Set the property PackageScribanIncludeSource to true in your project:
    <PropertyGroup>
      <PackageScribanIncludeSource>true</PackageScribanIncludeSource>
    </PropertyGroup>
    
  • Add the IncludeAssets="Build" to the NuGet PackageReference for Scriban:
    <ItemGroup>
      <PackageReference Include="Scriban" Version="3.2.1" IncludeAssets="Build"/>
    </ItemGroup>
    

If you are targeting netstandard2.0 or .NET Framework 4.7.2+, in order to compile Scriban you will need these NuGet package references (that can come from a dependency that you already have):

<ItemGroup>
    <PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
    <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.0" />
</ItemGroup>

NOTE: In this mode, all Scriban types are marked as internal.

You should see a Scriban folder and empty subfolders in your project. This is an issue with Visual Studio 2019 16.8.x (and before) and it will be fixed in VS 2019 16.9+

License

This software is released under the BSD-Clause 2 license.

  • dotliquid: .NET port of the liquid templating engine
  • Fluid .NET liquid templating engine
  • Nustache: Logic-less templates for .NET
  • Handlebars.Net: .NET port of handlebars.js
  • Textrude: UI and CLI tools to turn CSV/JSON/YAML models into code using Scriban templates
  • NTypewriter: VS extension to turn C# code into documentation/TypeScript/anything using Scriban templates

Online Demo

Credits

Adapted logo Puzzle by Andrew Doane from the Noun Project

Author

Alexandre Mutel aka xoofx.

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (100)

Showing the top 5 NuGet packages that depend on Scriban:

Package Downloads
Volo.Abp.TextTemplating.Scriban The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

Serenity.CodeGenerator The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Generates server and script side code for Serenity platform applications

Miru.Core

Package Description

RecommendationsGatewayModule.Data

Package Description

HandeSoft.Util

Package Description

GitHub repositories (30)

Showing the top 5 popular GitHub repositories that depend on Scriban:

Repository Stars
abpframework/abp
Open Source Web Application Framework for ASP.NET Core
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 2.1, 2.2, 3.1, 5.0, 6.0, 7.0 and 8.0 preview 2 projects you can use. Readme contains explanations on all projects.
spectreconsole/spectre.console
A .NET library that makes it easier to create beautiful console applications.
openiddict/openiddict-core
Versatile OAuth 2.0/OpenID Connect stack for .NET
TelegramBots/Telegram.Bot
.NET Client for Telegram Bot API
Version Downloads Last updated
5.7.0 32,221 2/25/2023
5.6.0 30,932 2/3/2023
5.5.2 73,926 1/4/2023
5.5.1 90,084 11/18/2022
5.5.0 468,543 7/11/2022
5.4.6 286,939 5/29/2022
5.4.5 23,167 5/22/2022
5.4.4 667,044 4/9/2022
5.4.3 40,604 4/3/2022
5.4.2 7,352 3/31/2022
5.4.1 63,396 3/15/2022
5.4.0 126,488 2/6/2022
5.3.0 988 2/6/2022
5.2.0 4,847 2/6/2022
5.1.0 721 2/5/2022
5.0.0 542,312 10/20/2021
4.1.0 28,843 10/7/2021
4.0.2 523,437 9/22/2021
4.0.1 646,847 6/3/2021
4.0.0 2,635 6/2/2021
3.9.0 18,703 5/31/2021
3.8.2 18,433 5/27/2021
3.8.1 21,804 5/25/2021
3.8.0 805 5/25/2021
3.7.0 84,549 5/1/2021
3.6.0 742,486 3/20/2021
3.5.0 193,606 2/13/2021
3.4.2 32,700 2/1/2021
3.4.1 30,648 1/23/2021
3.4.0 12,362 1/21/2021
3.3.3 51,470 1/14/2021
3.3.2 99,734 12/30/2020
3.3.1 50,008 12/30/2020
3.3.0 1,123 12/29/2020
3.2.2 2,665 12/24/2020
3.2.1 14,691 12/22/2020
3.2.0 888 12/22/2020
3.1.0 4,566 12/21/2020
3.0.7 25,687 12/15/2020
3.0.6 105,467 12/6/2020
3.0.5 219,349 12/1/2020
3.0.4 3,856 11/30/2020
3.0.3 2,496 11/29/2020
3.0.2 58,171 11/23/2020
3.0.1 1,114 11/22/2020
3.0.0 15,652 11/15/2020
3.0.0-alpha.9 4,562 8/20/2020
3.0.0-alpha.8 365 8/7/2020
3.0.0-alpha.7 230 7/31/2020
3.0.0-alpha.6 250 7/31/2020
3.0.0-alpha.5 505 7/25/2020
3.0.0-alpha.4 306 7/25/2020
3.0.0-alpha.3 5,923 7/16/2020
3.0.0-alpha.2 281 7/6/2020
3.0.0-alpha.1 350 6/18/2020
2.1.4 388,085 8/16/2020
2.1.3 752,636 6/5/2020
2.1.2 268,928 3/8/2020
2.1.1 294,455 12/6/2019
2.1.0 278,398 6/30/2019
2.0.1 438,158 5/11/2019
2.0.0 142,824 3/8/2019
2.0.0-alpha-006 469 3/7/2019
2.0.0-alpha-005 2,714 1/15/2019
2.0.0-alpha-004 1,288 1/4/2019
2.0.0-alpha-003 511 1/3/2019
2.0.0-alpha-002 590 1/1/2019
2.0.0-alpha-001 542 12/28/2018
1.2.9 98,844 12/21/2018
1.2.8 5,555 12/17/2018
1.2.7 156,170 10/6/2018
1.2.6 6,457 9/26/2018
1.2.5 8,284 8/29/2018
1.2.4 2,423 8/21/2018
1.2.3 82,846 7/20/2018
1.2.2 6,135 7/3/2018
1.2.1 26,795 6/1/2018
1.2.0 23,783 2/10/2018
1.1.1 5,368 1/22/2018
1.1.0 967 1/22/2018
1.0.0 78,934 12/24/2017
1.0.0-beta-006 907 12/12/2017
1.0.0-beta-005 729 12/3/2017
1.0.0-beta-004 988 11/19/2017
1.0.0-beta-003 950 11/19/2017
1.0.0-beta-002 951 11/13/2017
1.0.0-beta-001 926 11/12/2017
0.16.0 4,252 11/12/2017
0.15.0 9,456 11/9/2017
0.14.0 1,137 11/7/2017
0.13.0 1,135 11/7/2017
0.12.1 1,136 11/6/2017
0.12.0 1,123 11/6/2017
0.11.0 1,146 11/4/2017
0.10.0 1,117 11/1/2017
0.9.1 1,125 10/27/2017
0.9.0 1,110 10/25/2017
0.9.0-pre100 961 10/23/2017
0.7.0 23,975 10/12/2017
0.6.0 1,443 5/16/2017
0.5.0 931 5/16/2017
0.4.0 936 5/8/2017
0.3.1 964 4/4/2017
0.3.1-pre028 771 4/4/2017
0.3.0 961 3/9/2017
0.2.2 980 2/2/2017
0.2.1 1,001 2/1/2017
0.2.0 1,717 6/27/2016
0.1.0 2,757 5/31/2016