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