Example #1
0
 public void Visit(MdContainerBlock containerBlock) => VisitContainer(containerBlock);
Example #2
0
 /// <summary>
 /// Initializes a new instance of <see cref="MdDocument"/> with the specified block as root element.
 /// </summary>
 /// <param name="root">The documents root block</param>
 public MdDocument(MdContainerBlock root) =>
Example #3
0
 /// <summary>
 /// Creates a new instance of <see cref="MdDocument"/> with the specified block as root element.
 /// </summary>
 /// <param name="root">The documents root block</param>
 public static MdDocument Document(MdContainerBlock root) => new MdDocument(root);