mirror of
				https://github.com/walkxcode/dashboard-icons.git
				synced 2025-10-28 14:09:05 +08:00 
			
		
		
		
	
		
			
	
	
		
			7 lines
		
	
	
		
			239 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			7 lines
		
	
	
		
			239 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | import re | ||
|  | 
 | ||
|  | def convert_to_kebab_case(name: str) -> str: | ||
|  |     """Convert a filename to kebab-case.""" | ||
|  |     cleaned = re.sub(r'[^a-zA-Z0-9\s-]', '', name) | ||
|  |     kebab_case_name = re.sub(r'[\s_]+', '-', cleaned).lower() | ||
|  |     return kebab_case_name |