MustacheSharp/mustache-sharp/StaticGenerator.cs

42 lines
995 B
C#
Raw Normal View History

using System;
using System.IO;
namespace Mustache
{
/// <summary>
/// Generates a static block of text.
/// </summary>
internal sealed class StaticGenerator : IGenerator
{
private readonly string value;
/// <summary>
/// Initializes a new instance of a StaticGenerator.
/// </summary>
2014-05-21 17:38:39 +00:00
public StaticGenerator(string value, bool removeNewLines)
{
2014-05-21 17:38:39 +00:00
if (removeNewLines)
{
this.value = value.Replace(Environment.NewLine, String.Empty);
}
else
{
this.value = value;
}
}
/// <summary>
/// Gets or sets the static text.
/// </summary>
public string Value
{
get { return value; }
}
2016-03-21 17:41:46 +00:00
void IGenerator.GetText(TextWriter writer, Scope scope, Scope context, Action<Substitution> postProcessor)
{
writer.Write(Value);
}
}
}