<div dir="ltr"><div>G'day!</div><div><br></div>Is there an easy way to extract a single declaration from an Haskell source file and print it with the original formatting?<div><br><div>[I could live with pretty printing, but the default prettyPrint gives me a very strange formatting where something like:</div><div>main = do</div><div>  putStrLn "Hello"</div><div>becomes:</div><div>main = do putStrLn "Hello"]</div><div><br></div><div>The closest I've got is to parse the file with comments and then get inside Module ...decls and do printExact with an empty comment list for the decl I'm interested in. This gives me the original formatting and empty lines where comments were that I can then remove.</div><div><br></div><div>But if there was anything already out there that just take a String for the toplevel I'm interested in and convert that only, I'd love to know.</div></div><div><br></div><div>Thanks,</div><div><br></div><div>  Maurizio</div></div>