Require a recent snapshot with the latest pandoc-types for the pandoc filters (may be different from the snapshot used to build hledger).
		
			
				
	
	
		
			13 lines
		
	
	
		
			261 B
		
	
	
	
		
			Haskell
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			261 B
		
	
	
	
		
			Haskell
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env stack
 | |
| {- stack runghc --verbosity info --resolver lts-5.11 --package pandoc-types-1.16.1 -}
 | |
| 
 | |
| import Text.Pandoc.JSON
 | |
| 
 | |
| main :: IO ()
 | |
| main = toJSONFilter removeNotes
 | |
| 
 | |
| removeNotes :: Inline -> Inline
 | |
| removeNotes (Note _) = Str ""
 | |
| removeNotes x = x
 | |
| 
 |