-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added IBlockDocumentItem and BlockDocumentItemBase for Block documents
Added Properties for ITokenOptions to allow custom name/value pairs to be stored from Tags & Blocks(Opening and Closing) #16 Fixed Fixed Logging formatter NREX
- Loading branch information
Jean-Pierre Bachmann
authored and
Jean-Pierre Bachmann
committed
Jan 3, 2021
1 parent
c1f9495
commit c792738
Showing
63 changed files
with
1,230 additions
and
605 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System.Collections.Generic; | ||
using Morestachio.Framework.Tokenizing; | ||
|
||
namespace Morestachio.Document.Contracts | ||
{ | ||
/// <summary> | ||
/// Defines a part that can store itself and children | ||
/// </summary> | ||
public interface IBlockDocumentItem : IDocumentItem | ||
{ | ||
/// <summary> | ||
/// The list of Children that are children of this Document item | ||
/// </summary> | ||
IList<IDocumentItem> Children { get; } | ||
|
||
/// <summary> | ||
/// The token options set on a closing tag of an block | ||
/// </summary> | ||
IEnumerable<ITokenOption> BlockClosingOptions { get; set; } | ||
|
||
/// <summary> | ||
/// Adds the specified childs. | ||
/// </summary> | ||
void Add(params IDocumentItem[] documentChildren); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.