Added Search Page. Final Version for 1st internal relaese

This commit is contained in:
Simon Martens
2022-11-02 16:37:50 +01:00
parent 74a952270d
commit 898029713e
20 changed files with 387 additions and 204 deletions

View File

@@ -3,8 +3,9 @@ using System.Text;
public class SearchState : HaWeb.HTMLParser.IState {
internal string SearchWord;
internal string? CurrentIdentifier;
internal bool Normalize;
internal List<(string Page, string Line)>? Results;
internal List<(string Page, string Line, string Identifier)>? Results;
public SearchState(string searchword, bool normalize = false) {
Normalize = normalize;