Stubble.Core.StubbleRenderer.Parse C# (CSharp) Method

Parse() public method

Parses and caches the given template in the writer and returns the list of tokens it contains. Doing this ahead of time avoids the need to parse templates on the fly as they are rendered. If you don't need the result CacheTemplate(string)
public Parse ( string template ) : IList
template string The mustache teplate to parse
return IList
        public IList<ParserOutput> Parse(string template)
        {
            return Parse(template, (Tags)null);
        }

Same methods

StubbleRenderer::Parse ( string template, Tags tags ) : IList
StubbleRenderer::Parse ( string template, string tags ) : IList