public OtherNode(IElement content) { Content = content; Children = INodeHelper.TryCreateNodes(content.Children).ToList(); }
public ParagraphNode(IHtmlParagraphElement content) { Content = content; Children = INodeHelper.TryCreateNodes(content.Children).ToList(); }
public BodyNode(IHtmlBodyElement content) { Content = content; Children = INodeHelper.TryCreateNodes(content.Children).ToList(); }