Skip to content

Commit

Permalink
more Github Markdown formatting on the README
Browse files Browse the repository at this point in the history
  • Loading branch information
brad-ross committed Aug 11, 2013
1 parent 28260ad commit f15cd18
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,27 @@ In order to take a look at JFL's features, here is a sample JSON object that wil
"extinct": false,
"ancestor": "Saber-Tooth Tiger"
},
children: [{
"name": "Jim",
"age": 1,
"alive": true,
"zoo": "San Francisco",
"species": {
"name": "cat",
"kingdom": "Animal",
"extinct": false,
"ancestor": "Saber-Tooth Tiger"
"children": [
{
"name": "Jim",
"age": 1,
"alive": true,
"zoo": "San Francisco",
"species": {
"name": "cat",
"kingdom": "Animal",
"extinct": false,
"ancestor": "Saber-Tooth Tiger"
}
}
}]
]
},
{
"name": "Larry",
"age": 4,
"alive": true,
"tagged !": true,
"zoo": San Francisco,
"zoo": "San Francisco",
"species": {
"name": "cat",
"kingdom": "Animal",
Expand Down Expand Up @@ -446,7 +448,7 @@ Sometimes, objects can have variable key names, such as Tom's `habitats` key. Ea

```json
{
habitats: {
"habitats": {
"Kitchen": {
"name": "Kitchen",
"score": 10
Expand All @@ -465,14 +467,14 @@ In the above example JFL, the nested block within habitats only returned key-val

```json
{
habitats: {
"habitats": {
"Kitchen": {
"score": 10
}
}
}
```

### C# Library

Initially, I have built a C# JFL library that allows users to leverage *most* of JFL's intended functionality in a native environment. While this implementation is usable, its lack of complete feature parity (explained in more detail below) and performance issues (also explained below) might render it as more of a "proof-of-concept" to some. Be aware of these issues if you decide to include this library in your project.
Expand Down

0 comments on commit f15cd18

Please sign in to comment.