Added ParsedMarginals to LetterRules. Still last TODO open.

This commit is contained in:
schnulller
2022-05-26 17:28:45 +02:00
parent 6433fa7c01
commit 97a8ccbe88
2 changed files with 9 additions and 3 deletions

View File

@@ -19,6 +19,8 @@ public class LetterState : HaWeb.HTMLParser.IState {
internal IEnumerable<Hand>? Hands;
internal IEnumerable<Editreason>? Edits;
internal List<(string, string, string)> ParsedMarginals;
// State
internal bool active_del;
internal bool active_skipwhitespace;
@@ -41,6 +43,7 @@ public class LetterState : HaWeb.HTMLParser.IState {
public void SetupState() {
ParsedMarginals = new List<(string, string, string)>();
sb_lettertext = new StringBuilder();
active_skipwhitespace = true;
currline = "-1";