You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MwParserFromScratch/Nodes/Wikitext.cs
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,11 +73,26 @@ public InlineContainer(IEnumerable<InlineNode> nodes)
73
73
if(nodes!=null)Inlines.Add(nodes);
74
74
}
75
75
76
+
/// <summary>
77
+
/// Append a <see cref="PlainText"/> node to the beginning of the paragraph.
78
+
/// </summary>
79
+
/// <param name="text">The text to be inserted.</param>
80
+
/// <returns>Either the new <see cref="PlainText"/> node inserted, or the existing <see cref="PlainText"/> at the beginning of the paragraph.</returns>
81
+
/// <exception cref="ArgumentNullException"><paramref name="text"/> is <c>null</c>.</exception>
0 commit comments