/// <summary>Visits the provided <paramref name="heading4"/> element.</summary> /// <param name="heading4">The <see cref="Heading4Element"/> to visit.</param> protected internal abstract void Visit(Heading4Element heading4);
/// <summary>Visits the provided <paramref name="heading4"/> element.</summary> /// <param name="heading4">The <see cref="Heading4Element"/> to visit.</param> protected internal override void Visit(Heading4Element heading4) { BeginElement("h4"); Write(heading4.Text); EndElementWithoutIndent(); }