packages feed

nowdoc 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+50/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

README.md view
@@ -1,1 +1,49 @@ # nowdoc++Simplest here document.+Only two transformation.++* remove head newline if exist+* remove one space from '|', space, space, ..., ']'++```hs+hello = [nowdoc|+abc+def+ghi+|]+```++is++```hs+hello = "abc\ndef\nghi\n"+```++,++```hs+hello = [nowdoc|hello|]+```++is++```hs+hello = "hello"+```++and++```hs+hello = [nowdoc|+hello | ]+world |  ]+! |   ]+|]+```++is++```hs+hello = "hello |]\nworld| ]\n! |  ]"+```
nowdoc.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 087ee2b1e9300c01bedb2232553e220d78e6f4c5308d0221029287e0cc914fe1+-- hash: cc86c4c89b9930d2ac45d6902c23673e369e80ebbea880197d09183f941e693d  name:           nowdoc-version:        0.1.0.0+version:        0.1.0.1 synopsis:       Here document without variable expansion like PHP Nowdoc description:    Please see the README on GitHub at <https://github.com/YoshikuniJujo/nowdoc#readme> category:       Text