From efcea75c437a998e41c8d2e14f51038830bc5a9e Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Fri, 25 May 2012 10:14:20 -0700 Subject: [PATCH] moooore format fixes --- README.markdown | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README.markdown b/README.markdown index 30c237b..8aee87f 100644 --- a/README.markdown +++ b/README.markdown @@ -167,8 +167,9 @@ however, it is important to recognize that jsx is greedy by default. jsx will co ## data types ## +* `json_term()` -* ```erlang + ```erlang json_term() = [json_term()] | [{binary() | atom(), json_term()}] | true @@ -179,13 +180,17 @@ however, it is important to recognize that jsx is greedy by default. jsx will co | binary() ``` -* the erlang representation of json. binaries should be `utf8` encoded (but see below in options) + the erlang representation of json. binaries should be `utf8` encoded (but see below in options) + +* `json_text()` ```erlang json_text() = binary() ``` -* a utf8 encoded binary containing a json string + a utf8 encoded binary containing a json string + +* `tokens()` & `token()` ```erlang tokens() = token() | [token()] @@ -211,7 +216,9 @@ however, it is important to recognize that jsx is greedy by default. jsx will co | end_json ``` -* the internal representation used during syntactic analysis + the internal representation used during syntactic analysis + +* `event()` ```erlang event() = start_object @@ -228,7 +235,9 @@ however, it is important to recognize that jsx is greedy by default. jsx will co | end_json ``` -* the internal representation used during semantic analysis + the internal representation used during semantic analysis + +* `options()` & `option()` ```erlang options() = [option()]