Beispiel #1
0
 /// <summary>Visits the provided <paramref name="heading5"/> element.</summary>
 /// <param name="heading5">The <see cref="Heading5Element"/> to visit.</param>
 protected internal abstract void Visit(Heading5Element heading5);
Beispiel #2
0
 /// <summary>Visits the provided <paramref name="heading5"/> element.</summary>
 /// <param name="heading5">The <see cref="Heading5Element"/> to visit.</param>
 protected internal override void Visit(Heading5Element heading5)
 {
     BeginElement("h5");
     Write(heading5.Text);
     EndElementWithoutIndent();
 }