Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 539 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 539 Bytes

tree-sitter-gram

A tree-sitter grammar for gram notation.

Gram is a subject-based notation for structured data.

If this is an object:

{
  "name":"Andreas",
  "roles":["author"]
}

Implicitly the object is a person. To become a subject, the implicit information can be explicit.

As a subject:

(:Person {
  name: "Andreas",
  roles: ["author"]
})

Learn more about gram at the gram-data github org notation.