:: String -> Text package:pretty-simple

Similar to pShow, but the first argument is a String representing a data type that has already been showed. This will work on any String that is similar to a Haskell data type. The only requirement is that the strings are quoted, and braces, parentheses, and brackets are correctly used to represent indentation. For example, pString will correctly pretty-print JSON. This function is for printing to a dark background. See pStringNoColor for an example of how to use this function.
Alias for pString.
Just like pStringDarkBg, but for printing to a light background.
LIke pString, but without color.
>>> pStringNoColor $ show [1, 2, 3]
"[ 1\n, 2\n, 3\n]"
Similar to pPrintForceColor, but just return the resulting pretty-printed data type as a Text instead of printing it to the screen. This function is for printing to a dark background. See pShowNoColor for an example of how to use this function.