13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Haskell
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Haskell
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env stack
 | |
| {- stack runghc --verbosity info --package pandoc-types-1.16.1 -}
 | |
| 
 | |
| import Text.Pandoc.JSON
 | |
| 
 | |
| main :: IO ()
 | |
| main = toJSONFilter removeHtmlInlines
 | |
| 
 | |
| removeHtmlInlines :: Inline -> Inline
 | |
| removeHtmlInlines (RawInline (Format "html") _) = Str ""
 | |
| removeHtmlInlines x = x
 | |
| 
 |