yaml-0.11.1.2: Support for parsing and rendering YAML documents.

Safe HaskellNone
LanguageHaskell2010

Data.Yaml.Pretty

Description

Prettier YAML encoding.

Since: 0.8.13

Synopsis

Documentation

encodePretty :: ToJSON a => Config -> a -> ByteString Source #

Configurable encode.

Since: 0.8.13

data Config Source #

Since: 0.8.13

getConfCompare :: Config -> Text -> Text -> Ordering Source #

Since: 0.8.13

setConfCompare :: (Text -> Text -> Ordering) -> Config -> Config Source #

Sets ordering for object keys

Since: 0.8.13

getConfDropNull :: Config -> Bool Source #

Since: 0.8.24

setConfDropNull :: Bool -> Config -> Config Source #

Drop entries with Null value from objects, if set to True

Since: 0.8.24

defConfig :: Config Source #

The default configuration: do not sort objects or drop keys

Since: 0.8.13