.. _CONFIG/FileFormat: File Formats ############ Currently, the following file formats are supported: * :ref:`CONFIG/FileFormat/JSON` - JavaScript Object Notation * :ref:`CONFIG/FileFormat/YAML` - YAML Ain’t Markup Language Possible future file formats: * :ref:`CONFIG/FileFormat/TOML` - Tom's Obvious, Minimal Language * :ref:`CONFIG/FileFormat/XML` - Extensible Markup Language .. tab-set:: .. tab-item:: JSON :sync: JSON .. code-block:: JSON { "version": "1.0", "settings": { "key1": "item1", "key2": "item2" }, "files": [ "path/to/file1.ext", "path/to/file2.ext", "path/to/file3.ext" ] } .. tab-item:: TOML :sync: TOML .. attention:: Not yet implemented. .. code-block:: TOML version = "1.0" [settings] key1 = "item1" key2 = "item2" files = [ "path/to/file1.ext", "path/to/file2.ext", "path/to/file3.ext" ] .. tab-item:: YAML :sync: YAML .. code-block:: YAML version: "1.0" settings: key1: item1 key2: item2 files: - path/to/file1.ext - path/to/file2.ext - path/to/file3.ext .. tab-item:: XML :sync: XML .. attention:: Not yet implemented. .. code-block:: XML item1 item2 path/to/file1.ext path/to/file2.ext path/to/file3.ext .. toctree:: :hidden: JSON TOML YAML XML