27 lines
634 B
Markdown
27 lines
634 B
Markdown
|
---
|
||
|
title: "Configuration File (.cfg)"
|
||
|
---
|
||
|
|
||
|
{{< note "This documentation is incomplete." >}}
|
||
|
|
||
|
A plaintext configuration file.
|
||
|
|
||
|
# Structure
|
||
|
|
||
|
The file is plaintext, which is easy to parse. The file is split into categories, which are surrounded by `<` and `>`. Within those categories are key-value pairs which are separated by tab characters (`\t`).
|
||
|
|
||
|
```
|
||
|
<FINAL FANTASY XIV Boot Config File>
|
||
|
|
||
|
<Version>
|
||
|
Version 3
|
||
|
Language 1
|
||
|
Region 2
|
||
|
```
|
||
|
|
||
|
Keep in mind that categories can exist without any key-value pairs, as shown above.
|
||
|
|
||
|
# Alternative Implementations
|
||
|
|
||
|
* [Physis (Rust)](https://git.sr.ht/~redstrate/physis/tree/main/item/src/cfg.rs)
|