sordina / Edn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NOTE - Deprecated in favour of Pretty-Braces

Edn

A simple utility to pretty-print Edn formatted data.

Edn parsing library used and modified from hedn.

Usage

edn FILE
edn < FILE

Example

$ echo '{:foo {:key :value :attributes [:x :y :z] \ 
				 :fuzzes [{:i :love} {:red :pandas} {:for :real}]}}' | edn
{
	:foo {
		:attributes [:x :y :z]
		:fuzzes [{
			:i :love
		} {
			:red :pandas
		} {
			:for :real
		}]
		:key :value
	}
}

Binaries

http://sordina.binaries.s3.amazonaws.com/edn-0.1.0.0-MacOSX-10.9.2-13C64.zip

About

License:MIT License


Languages

Language:Haskell 100.0%