public void AddCssProperties(CssProperties properties) { if (StartTag != "") { StartTag = StartTag.Insert(StartTag.Length - 1, properties.AllCssProperiesToString()); } }
public void AddHref(string href, string basicUri) { if (IsRelativePath(href)) { href = basicUri + href; } href = $" href=\"{href}\""; StartTag = StartTag.Insert(StartTag.Length - 1, href); }