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