chunquedong / himl

JSON like data format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repo is deprecated and move to https://github.com/chunquedong/jsonc

HiML

HiML is a JSON like data format for serialization.

//comment
name = form
Pane {
    x = 1
    y = 2
    Button {
        id = button1
        x=1
        y=2
    }
    Button {
        x = 1, y = 2
    }
    1,2,3,
    a
    b
    c
}

Key Idea

  • no array, object as array
  • no data type, metadata in mind
  • quotes is options
  • comma is options
  • no braces for top level object
  • comment by //

About

JSON like data format


Languages

Language:C++ 100.0%