Skip to content

Commit

Permalink
Add Mermaid.js for markdown support (helix-editor#5147)
Browse files Browse the repository at this point in the history
  • Loading branch information
erasin authored Dec 14, 2022
1 parent 0f2ae35 commit 436296b
Show file tree
Hide file tree
Showing 3 changed files with 201 additions and 0 deletions.
1 change: 1 addition & 0 deletions book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
| make || | | |
| markdown || | | `marksman` |
| markdown.inline || | | |
| mermaid || | | |
| meson || || |
| mint | | | | `mint` |
| nickel || || `nls` |
Expand Down
13 changes: 13 additions & 0 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2043,3 +2043,16 @@ grammar = "qmljs"
[[grammar]]
name = "qmljs"
source = { git = "https://github.com/yuja/tree-sitter-qmljs", rev = "0b2b25bcaa7d4925d5f0dda16f6a99c588a437f1" }

[[language]]
name = "mermaid"
scope = "source.mermaid"
injection-regex = "mermaid"
file-types = ["mermaid"]
roots = []
comment-token = "%%"
indent = { tab-width = 4, unit = " " }

[[grammar]]
name = "mermaid"
source = { git = "https://github.com/monaqa/tree-sitter-mermaid", rev = "d787c66276e7e95899230539f556e8b83ee16f6d" }
187 changes: 187 additions & 0 deletions runtime/queries/mermaid/highlights.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
[
"sequenceDiagram"
"classDiagram"
"classDiagram-v2"
"stateDiagram"
"stateDiagram-v2"
"gantt"
"pie"
"flowchart"
"erdiagram"

"participant"
"as"
"activate"
"deactivate"
"note "
"over"
"link"
"links"
; "left of"
; "right of"
"properties"
"details"
"title"
"loop"
"rect"
"opt"
"alt"
"else"
"par"
"and"
"end"
(sequence_stmt_autonumber)
(note_placement_left)
(note_placement_right)

"class"

"state "

"dateformat"
"inclusiveenddates"
"topaxis"
"axisformat"
"includes"
"excludes"
"todaymarker"
"title"
"section"

"direction"
"subgraph"

] @keyword

[
(comment)
] @comment

(flow_vertex_id) @type
(flow_arrow_text) @label
(flow_text_literal) @string

[
":"
(sequence_signal_plus_sign)
(sequence_signal_minus_sign)

(class_visibility_public)
(class_visibility_private)
(class_visibility_protected)
(class_visibility_internal)

(state_division)
] @punctuation.delimiter

[
"("
")"
"{"
"}"
] @punctuation.bracket

[
"-->"
(solid_arrow)
(dotted_arrow)
(solid_open_arrow)
(dotted_open_arrow)
(solid_cross)
(dotted_cross)
(solid_point)
(dotted_point)
] @operator

[
(class_reltype_aggregation)
(class_reltype_extension)
(class_reltype_composition)
(class_reltype_dependency)
(class_linetype_solid)
(class_linetype_dotted)
"&"
] @operator

(sequence_actor) @variable
(sequence_text) @string

(class_name) @type
(class_label) @string
(class_method_line) @function.method

(state_name) @variable

(gantt_section) @markup.heading
(gantt_task_text) @variable.builtin
(gantt_task_data) @string

[
(class_annotation_line)
(class_stmt_annotation)
(class_generics)

(state_annotation_fork)
(state_annotation_join)
(state_annotation_choice)
] @type

(directive) @keyword.directive

(pie_label) @string
(pie_value) @constant.numeric

[
(flowchart_direction_lr)
(flowchart_direction_rl)
(flowchart_direction_tb)
(flowchart_direction_bt)
] @constant

(flow_vertex_id) @variable

[
(flow_link_arrow)
(flow_link_arrow_start)
] @operator

(flow_link_arrowtext "|" @punctuation.bracket)

(flow_vertex_square [ "[" "]" ] @punctuation.bracket )
(flow_vertex_circle ["((" "))"] @punctuation.bracket )
(flow_vertex_ellipse ["(-" "-)"] @punctuation.bracket )
(flow_vertex_stadium ["([" "])"] @punctuation.bracket )
(flow_vertex_subroutine ["[[" "]]"] @punctuation.bracket )
(flow_vertex_rect ["[|" "|]"] @punctuation.bracket )
(flow_vertex_cylinder ["[(" ")]"] @punctuation.bracket )
(flow_vertex_round ["(" ")"] @punctuation.bracket )
(flow_vertex_diamond ["{" "}"] @punctuation.bracket )
(flow_vertex_hexagon ["{{" "}}"] @punctuation.bracket )
(flow_vertex_odd [">" "]"] @punctuation.bracket )
(flow_vertex_trapezoid ["[/" "\\]"] @punctuation.bracket )
(flow_vertex_inv_trapezoid ["[\\" "/]"] @punctuation.bracket )
(flow_vertex_leanright ["[/" "/]"] @punctuation.bracket )
(flow_vertex_leanleft ["[\\" "\\]"] @punctuation.bracket )

(flow_stmt_subgraph ["[" "]"] @punctuation.bracket )

[
(er_cardinarity_zero_or_one)
(er_cardinarity_zero_or_more)
(er_cardinarity_one_or_more)
(er_cardinarity_only_one)
(er_reltype_non_identifying)
(er_reltype_identifying)
] @operator

(er_entity_name) @variable

(er_attribute_type) @type
(er_attribute_name) @variable

[
(er_attribute_key_type_pk)
(er_attribute_key_type_fk)
] @keyword

(er_attribute_comment) @string

0 comments on commit 436296b

Please sign in to comment.