Provides a DotLiquid filter which enables date arithmetic like {{ blog.date | date_add:'3 days' }} and tokens like {{ 'today' | date:'yyyy-mm-dd' }}. See the project page for usage.
A format provider for string.format that can use dictionary keys or property names as formats i.e "{0:Username} joined on {0:JoinDate:D}" produces "John Doe joined on Thursday, October 22, 2014"
* Define string.format-like templates using *named* tokens.
* A fluent API that makes template configuration clear and intuitive.
* Access properties and parameterless methods of input values using a simple syntax.
* Use delegates to process inputs. Tell your template to join a list, make a string...
More information
Provides a SmartFormat plugin which adds relative time tokens like '{Today}' and arithmetic like "last month +3 days", which enables string format strings like {Today:yyyy-MM-dd|-3 days}. See the project page for usage.
VB.NET source file with a better implementation of String.Format(..) that does not throw an exception if an opening "{" is somewhere in the text or if not all placeholders are used.
Supported versions:
.NET Framework 3.5
.NET Framework 4.0
.NET Framework 4.5
.NET Framework 4.5.1
.NET Framework...
More information
Provides better code maintainability by simple yet powerful .Params() string extension to supplement/replace string.Format(). Accepts numeric, named and reference parameters. More details and examples in XML tooltips.
NUMERIC EXAMPLE:
return "test={0}".Params("value");
returns...
More information