// https://maroontress.github.io/HtmlBuilder/
using System;
using Maroontress.Html;
public sealed class Program
{
public static void Main()
var nodeOf = Nodes.NewFactory();
var span = nodeOf.Span.Add(
nodeOf.Text("Copyright "),
nodeOf.Entity.copy,
nodeOf.Text(" 2019"));
var result = span.ToString();
Console.WriteLine(result);
}