mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
16 lines
457 B
C#
16 lines
457 B
C#
namespace HaWeb.SearchHelpers;
|
|
using System.Text;
|
|
|
|
public class SearchState : HaWeb.HTMLParser.IState {
|
|
internal string SearchWord;
|
|
internal string? CurrentIdentifier;
|
|
internal bool Normalize;
|
|
internal List<(string Page, string Line, string Identifier)>? Results;
|
|
|
|
public SearchState(string searchword, bool normalize = false) {
|
|
Normalize = normalize;
|
|
SearchWord = searchword;
|
|
}
|
|
|
|
public void SetupState() {}
|
|
} |