32 lines
961 B
C#
32 lines
961 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace Mustache
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Defines a tag that outputs a newline.
|
|||
|
/// </summary>
|
|||
|
internal sealed class NewlineTagDefinition : InlineTagDefinition
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Initializes a new instance of an NewlineTagDefinition.
|
|||
|
/// </summary>
|
|||
|
public NewlineTagDefinition()
|
|||
|
: base("newline")
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets the text to output.
|
|||
|
/// </summary>
|
|||
|
/// <param name="writer">The writer to write the output to.</param>
|
|||
|
/// <param name="arguments">The arguments passed to the tag.</param>
|
|||
|
/// <param name="contextData">Extra data passed along with the context.</param>
|
|||
|
public override void GetText(TextWriter writer, Dictionary<string, object> arguments, object contextData)
|
|||
|
{
|
|||
|
writer.Write(Environment.NewLine);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|