Moves XNA 4 files for Github migration.
This commit is contained in:
30
Plan B Html Parser/Nodes/HtmlBrNode.cs
Normal file
30
Plan B Html Parser/Nodes/HtmlBrNode.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PlanB.Html.Nodes
|
||||
{
|
||||
public class HtmlBrNode: HtmlNode
|
||||
{
|
||||
public override string ToString()
|
||||
{
|
||||
return Environment.NewLine;
|
||||
}
|
||||
|
||||
public HtmlBrNode()
|
||||
{
|
||||
Type = HtmlNodeType.Br;
|
||||
}
|
||||
|
||||
public override string TagName
|
||||
{
|
||||
get { return StaticTagName; }
|
||||
}
|
||||
|
||||
public static string StaticTagName
|
||||
{
|
||||
get { return "br"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user