mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 01:35:32 +00:00
Started integrating letter view; overhauled marginals completely
This commit is contained in:
@@ -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() { }
|
||||
}
|
||||
Reference in New Issue
Block a user