Esempio n. 1
0
 /// <summary>Visits the provided <paramref name="heading3"/> element.</summary>
 /// <param name="heading3">The <see cref="Heading3Element"/> to visit.</param>
 protected internal abstract void Visit(Heading3Element heading3);
Esempio n. 2
0
 /// <summary>Visits the provided <paramref name="heading3"/> element.</summary>
 /// <param name="heading3">The <see cref="Heading3Element"/> to visit.</param>
 protected internal override void Visit(Heading3Element heading3)
 {
     BeginElement("h3");
     Write(heading3.Text);
     EndElementWithoutIndent();
 }