mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-11-04 12:15:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			418 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			418 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace HaWeb.Settings.ParsingState;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
public class EditState : HaWeb.HTMLParser.IState {
 | 
						|
    internal bool active_del;
 | 
						|
    internal bool active_skipwhitespace;
 | 
						|
 | 
						|
    internal StringBuilder sb_edits;
 | 
						|
 | 
						|
    public EditState() {
 | 
						|
        SetupState();
 | 
						|
    }
 | 
						|
 | 
						|
    public void SetupState() {
 | 
						|
        sb_edits = new StringBuilder();
 | 
						|
        active_del = false;
 | 
						|
        active_skipwhitespace = true;
 | 
						|
    }
 | 
						|
} |