62 lines
1.4 KiB
Markdown
62 lines
1.4 KiB
Markdown
# Bellande Format
|
|
|
|
## Bellande File Format is a file format that that can be used as any file type.
|
|
|
|
- Indentation-based structure
|
|
- Simple key-value pair syntax
|
|
- Support for lists and nested structures
|
|
- Basic data types (strings, numbers, booleans, null)
|
|
- Comment support
|
|
|
|
|
|
## Example of Bellande File Format
|
|
|
|
```
|
|
# This is a Bellande file
|
|
|
|
version: 1.0
|
|
|
|
user:
|
|
name: John Doe
|
|
age: 30
|
|
is_active: true
|
|
|
|
preferences:
|
|
theme: dark
|
|
notifications: true
|
|
|
|
skills:
|
|
- Python
|
|
- JavaScript
|
|
- "C++"
|
|
|
|
address:
|
|
street: 123 Main St
|
|
city: Anytown
|
|
country: USA
|
|
|
|
additional_info: null
|
|
|
|
projects:
|
|
- name: Project A
|
|
status: in_progress
|
|
team_size: 5
|
|
- name: Project B
|
|
status: completed
|
|
team_size: 3
|
|
```
|
|
|
|
|
|
## Python Installation
|
|
- https://github.com/RonaldsonBellande/bellande_format/tree/main/Package/Python
|
|
|
|
## JavaScript Installation
|
|
- https://github.com/RonaldsonBellande/bellande_format/tree/main/Package/JavaScript
|
|
|
|
## Rust Installation
|
|
- https://github.com/RonaldsonBellande/bellande_format/tree/main/Package/JavaScript
|
|
|
|
|
|
## License
|
|
This Algorithm or Models is distributed under the [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/), see [LICENSE](https://github.com/RonaldsonBellande/bellande_format/blob/main/LICENSE) and [NOTICE](https://github.com/RonaldsonBellande/bellande_format/blob/main/LICENSE) for more information.
|