|  |  | @ -18,8 +18,8 @@ class PseudoParagraphProcessor(markdown_module.blockprocessors.ParagraphProcesso | 
			
		
	
		
		
			
				
					
					|  |  |  |     def run(self, parent, blocks): |  |  |  |     def run(self, parent, blocks): | 
			
		
	
		
		
			
				
					
					|  |  |  |         block = blocks.pop(0) |  |  |  |         block = blocks.pop(0) | 
			
		
	
		
		
			
				
					
					|  |  |  |         if block.strip(): |  |  |  |         if block.strip(): | 
			
		
	
		
		
			
				
					
					|  |  |  |             # Create element without enclosing tags |  |  |  |             # Create span element instead of paragraph | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |             p = markdown_module.util.etree.SubElement(parent, None) |  |  |  |             p = markdown_module.util.etree.SubElement(parent, 'span') | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |             p.text = block.lstrip() |  |  |  |             p.text = block.lstrip() | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | 
 |