Exemplo n.º 1
0
		public string Transform(string markup)
		{
			return Internal.RegularExpressions.InlineOutputDirective.Replace(markup, delegate(Match match)
			{
				string content = match.Groups["content"].Value;
				return string.Format("<% {0} %>", 
					outputMethodGenerator.GenerateFrom(content));
			});
		}
Exemplo n.º 2
0
 public string ToCode()
 {
     return(generator.GenerateFrom(content));
 }