From f71dff8564d6e055a1de7b0ea668af86b411f89e Mon Sep 17 00:00:00 2001 From: jsrobson10 Date: Tue, 9 Jul 2019 22:02:35 +1000 Subject: [PATCH 1/5] Modified README --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6713a6e..22e1f67 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # Binary Data Format -### Overview: +### Links + +- Overview + +### Overview Binary Data Format (or BDF) is designed to store data in a tag-like binary structure, like Notch's NBT format, but also open source and free like JSON. The format is @@ -9,7 +13,7 @@ be fast and work well on 32-bit systems, but have a maximum size of 2 GB. BDF allows human readable serialization to see what is going on for debugging purposes, but it currently can't parse the result to an object. -### Datatypes: +### Datatypes - Boolean - Integer From c646848b217a1f88ec5016aa773016d5f6060f44 Mon Sep 17 00:00:00 2001 From: jsrobson10 Date: Tue, 9 Jul 2019 22:05:34 +1000 Subject: [PATCH 2/5] Added some more links to README --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 22e1f67..736ef1f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,12 @@ ### Links -- Overview +- Overview +- Overview +- Overview +- Overview +- Overview +- Overview ### Overview From f93799d0927edd8a16ce217f40881ba7f869a63c Mon Sep 17 00:00:00 2001 From: jsrobson10 Date: Tue, 9 Jul 2019 22:07:02 +1000 Subject: [PATCH 3/5] Fixed spelling in README titles, fixed content in link names. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 736ef1f..8689294 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ ### Links - Overview -- Overview -- Overview -- Overview -- Overview -- Overview +- Data Types +- Creating an object +- Arrays +- Named lists +- Example BDF program ### Overview @@ -18,7 +18,7 @@ be fast and work well on 32-bit systems, but have a maximum size of 2 GB. BDF allows human readable serialization to see what is going on for debugging purposes, but it currently can't parse the result to an object. -### Datatypes +### Data Types - Boolean - Integer @@ -129,7 +129,7 @@ for(BdfObject o : array) ``` -### Named Lists +### Named lists Named lists can be used to store data under strings, to be used like variables in a program. A named list From cea0d2dc58859e3ca6658fe08e938b171301b14b Mon Sep 17 00:00:00 2001 From: jsrobson10 Date: Tue, 9 Jul 2019 22:07:51 +1000 Subject: [PATCH 4/5] Fixed punctuation in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8689294..74d2b5d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ be fast and work well on 32-bit systems, but have a maximum size of 2 GB. BDF allows human readable serialization to see what is going on for debugging purposes, but it currently can't parse the result to an object. -### Data Types +### Data types - Boolean - Integer From ad59fe10943f485c5f20578cc8b117efe2ee5c6b Mon Sep 17 00:00:00 2001 From: jsrobson10 Date: Tue, 9 Jul 2019 22:08:22 +1000 Subject: [PATCH 5/5] Fixed link punctuation in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74d2b5d..786a7cc 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ### Links - Overview -- Data Types +- Data types - Creating an object - Arrays - Named lists