mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python3
 | 
						|
 | 
						|
# Remove HTML entity escaping left over from MediaWiki->rST conversion.
 | 
						|
 | 
						|
import html
 | 
						|
import sys
 | 
						|
 | 
						|
for line in sys.stdin:
 | 
						|
    print(html.unescape(line), end='')
 |