C# Class UnderscoreBundler.UnderscoreTemplateCompiler

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

Public Methods

Method 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

Method Description
Unescape ( string code ) : string

Method Details

BuildSource() public method

public BuildSource ( string text ) : string
text string
return string

Compile() public method

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
return string