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