Files
hamann-ausgabe-core/HaWeb/Settings/ParsingState/EditState.cs
schnulller d054cf07e1 - Abstracted the XML-HTML Parser into a neat little state machine
- Added Settings classes for all things XML-HTML conversion
2022-05-19 22:34:49 +02:00

19 lines
418 B
C#

namespace HaWeb.Settings.ParsingState;
using System.Text;
public class EditState : HaWeb.HTMLParser.IState {
internal bool active_del;
internal bool active_skipwhitespace;
internal StringBuilder sb_edits;
public EditState() {
SetupState();
}
public void SetupState() {
sb_edits = new StringBuilder();
active_del = false;
active_skipwhitespace = true;
}
}