Started integrating letter view; overhauled marginals completely

This commit is contained in:
schnulller
2022-05-22 02:31:51 +02:00
parent da95222e8e
commit 8179ea6e68
19 changed files with 2203 additions and 261 deletions

View File

@@ -1,6 +1,19 @@
namespace HaWeb.Settings.ParsingState;
using System.Text;
public enum CommentType {
Comment,
Subcomment
}
public class CommentState : HaWeb.HTMLParser.IState {
internal string Category;
internal CommentType Type;
public CommentState(string category, CommentType type) {
this.Category = category;
this.Type = type;
}
public void SetupState() { }
}