C# Class UnderscoreBundler.UnderscoreTemplateCompiler

Line by line port of the Underscore's template method.
Afficher le fichier Open project: chaliy/aspnet-underscore-bundler Class Usage Examples

Méthodes publiques

Méthode Description
BuildSource ( string text ) : string
Compile ( string text ) : string

Returns compiled to javascript template.

JavaScript micro-templating, similar to John Resig's implementation. Underscore templating handles arbitrary delimiters, preserves whitespace, and correctly escapes quotes within interpolated code.

Private Methods

Méthode Description
Unescape ( string code ) : string

Method Details

BuildSource() public méthode

public BuildSource ( string text ) : string
text string
Résultat string

Compile() public méthode

Returns compiled to javascript template.
JavaScript micro-templating, similar to John Resig's implementation. Underscore templating handles arbitrary delimiters, preserves whitespace, and correctly escapes quotes within interpolated code.
public Compile ( string text ) : string
text string
Résultat string