mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
return the ElementType along with each Element in Parse
This commit is contained in:
parent
01fb5288ff
commit
d0ece92550
1 changed files with 8 additions and 8 deletions
|
@ -78,22 +78,22 @@ namespace MLEM.Ui.Parsers {
|
|||
/// <param name="element">The element to add the parsed elements to.</param>
|
||||
/// <returns>The <paramref name="element"/>, for chaining.</returns>
|
||||
public Element ParseInto(string markdown, Element element) {
|
||||
foreach (var el in this.Parse(markdown))
|
||||
element.AddChild(el);
|
||||
foreach (var (_, e) in this.Parse(markdown))
|
||||
element.AddChild(e);
|
||||
return element;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Parses the given markdown string into a set of elements and returns them.
|
||||
/// Parses the given markdown string into a set of elements and returns them along with their <see cref="ElementType"/>.
|
||||
/// During this process, the element stylings specified using <see cref="Style{T}"/> are also applied.
|
||||
/// </summary>
|
||||
/// <param name="markdown">The markdown to parse.</param>
|
||||
/// <returns>The parsed elements.</returns>
|
||||
public IEnumerable<Element> Parse(string markdown) {
|
||||
foreach (var (type, element) in this.ParseUnstyled(markdown)) {
|
||||
if (this.elementStyles.TryGetValue(type, out var style))
|
||||
style.Invoke(element);
|
||||
yield return element;
|
||||
public IEnumerable<(ElementType, Element)> Parse(string markdown) {
|
||||
foreach (var (t, e) in this.ParseUnstyled(markdown)) {
|
||||
if (this.elementStyles.TryGetValue(t, out var style))
|
||||
style.Invoke(e);
|
||||
yield return (t, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue