🧠 .isadb2 File

Using and handling the .isadb2 is quite simple, and you will probably learn just by reading this documentation.

Creating Lines

To create new content within the .isadb2 file, simply place a $ next to the name and [] around the content.

Remember that this name MUST NOT have spaces. Conflicts may arise if spaces are used, but spaces are allowed within the content.

$name[content number 1]

Adding Comments

For better internal communication, you can add comments in the .isadb2 file by using the # symbol instead of $, followed by your comment.

$name[content]
# comment 1
$anotherValue[another content]

Adding Special Lines

Special lines are necessary for file interpretation. They are categorized as JSON, Array, and Number. You need to include these for better file reading.

$name[content]
# comment 1
$anotherValue[another content]
$object[JSON({"name": "Facundo", "surname": "Rufino"})]
$array[Array(name1, name2, name3, JSON({"object": "inside array"}), Number(10), Array(one, two))]
$number[Number(5)]