mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			619 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			619 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
| General functions for HTML manipulation.
 | |
| """
 | |
| 
 | |
| # NB: this is a candidate for a bytes/string polymorphic interface
 | |
| 
 | |
| def escape(s, quote=True):
 | |
|     """
 | |
|     Replace special characters "&", "<" and ">" to HTML-safe sequences.
 | |
|     If the optional flag quote is true (the default), the quotation mark
 | |
|     characters, both double quote (") and single quote (') characters are also
 | |
|     translated.
 | |
|     """
 | |
|     s = s.replace("&", "&") # Must be done first!
 | |
|     s = s.replace("<", "<")
 | |
|     s = s.replace(">", ">")
 | |
|     if quote:
 | |
|         s = s.replace('"', """)
 | |
|         s = s.replace('\'', "'")
 | |
|     return s
 | 
