/// <summary>
		/// Add an element to the beginning of the paragraph.
		/// </summary>
		public void Prepend(IMarkdownInSection element)
		{
			elements.Insert(0, element);
		}
		/// <summary>
		/// Add an element to the end of the paragraph.
		/// </summary>
		public void Add(IMarkdownInSection element)
		{
			elements.Add(element);
		}
예제 #3
0
 /// <summary>
 /// Adds the element in a new MarkdownParagraph at the end of this section.
 /// </summary>
 public void AddInParagraph(IMarkdownInSection element)
 {
     elements.Add(new MarkdownParagraph(element));
 }