Skip to content

Commit

Permalink
Update CLI documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew committed Jun 15, 2023
1 parent 6d9fe05 commit 511bf7f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions packages/langium-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,22 @@ Schema:
caseInsensitive: boolean
// Enable generating a TextMate syntax highlighting file
textMate: {
// Output path to syntax highlighting file
// Output path to syntax highlighting file (json)
out: string
}
// Enable generating a monarch syntax highlighting file
monarch: {
// Output path to syntax highlighting file
// Output path to syntax highlighting file (js)
out: string
}
// Enable generating a prism syntax highlighting file
prism: {
// Output path to syntax highlighting file
// Output path to syntax highlighting file (js)
out: string
}
// Enable generating railroad syntax diagram
railroad: {
// Output path to syntax diagram file (html)
out: string
}
// Configure the chevrotain parser for a single language
Expand All @@ -79,6 +84,9 @@ Example:
"fileExtensions": [".dmodel"],
"textMate": {
"out": "syntaxes/domain-model.tmLanguage.json"
},
"railroad": {
"out": "docs/syntax-diagram.html"
}
}],
"out": "src/language-server/generated",
Expand Down

0 comments on commit 511bf7f

Please sign in to comment.