Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Implement naming conventions in HTML grammar #249

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions grammars/tree-sitter-ejs.cson
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@ comments:
end: '%>'

scopes:
'comment_directive': 'comment.block'
'comment_directive > "%>"': 'comment.block'

'"<%#"': 'keyword.control.directive'
'"<%"': 'keyword.control.directive'
'"<%="': 'keyword.control.directive'
'"<%_"': 'keyword.control.directive'
'"<%-"': 'keyword.control.directive'
'"%>"': 'keyword.control.directive'
'"-%>"': 'keyword.control.directive'
'"_%>"': 'keyword.control.directive'
'template': 'source.ejs'

'comment_directive': 'comment.block.html.ejs'

'"<%#"': 'punctuation.definition.comment.html.ejs'
'comment_directive > "%>"': 'punctuation.definition.comment.html.ejs'

'"<%"': 'punctuation.delimiter.embedded.html.ejs'
'"<%="': 'punctuation.delimiter.embedded.html.ejs'
'"<%_"': 'punctuation.delimiter.embedded.html.ejs'
'"<%-"': 'punctuation.delimiter.embedded.html.ejs'
'"%>"': 'punctuation.delimiter.embedded.html.ejs'
'"-%>"': 'punctuation.delimiter.embedded.html.ejs'
'"_%>"': 'punctuation.delimiter.embedded.html.ejs'
25 changes: 14 additions & 11 deletions grammars/tree-sitter-erb.cson
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@ comments:
end: '%>'

scopes:
'comment_directive': 'comment.block'
'comment_directive > "%>"': 'comment.block'

'"<%#"': 'keyword.control.directive'
'"<%"': 'keyword.control.directive'
'"<%="': 'keyword.control.directive'
'"<%_"': 'keyword.control.directive'
'"<%-"': 'keyword.control.directive'
'"%>"': 'keyword.control.directive'
'"-%>"': 'keyword.control.directive'
'"_%>"': 'keyword.control.directive'
'template': 'source.erb'

'comment_directive': 'comment.block.html.erb'

'"<%#"': 'punctuation.definition.comment.html.erb'
'comment_directive > "%>"': 'punctuation.definition.comment.html.erb'

'"<%"': 'punctuation.delimiter.embedded.html.erb'
'"<%="': 'punctuation.delimiter.embedded.html.erb'
'"<%_"': 'punctuation.delimiter.embedded.html.erb'
'"<%-"': 'punctuation.delimiter.embedded.html.erb'
'"%>"': 'punctuation.delimiter.embedded.html.erb'
'"-%>"': 'punctuation.delimiter.embedded.html.erb'
'"_%>"': 'punctuation.delimiter.embedded.html.erb'
60 changes: 36 additions & 24 deletions grammars/tree-sitter-html.cson
Original file line number Diff line number Diff line change
Expand Up @@ -28,29 +28,41 @@ comments:

scopes:
'fragment': 'source.html'
'tag_name': 'entity.name.tag'
'erroneous_end_tag_name': 'invalid.illegal'
'doctype': 'meta.tag.doctype.html'
'attribute_name': 'entity.other.attribute-name'
'attribute_value': 'string.html'

# Entity
'tag_name': 'entity.tag.html'
'erroneous_end_tag_name': 'entity.tag.html.invalid.illegal'
'attribute_name': 'entity.attribute.html'

# String
'attribute > attribute_value': 'string.unquoted.attribute-value.html'
'attribute > quoted_attribute_value': 'string.quoted.attribute-value.html'

# Text
'text': 'text.html'

# Comment
'comment': 'comment.block.html'

'
start_tag > "<",
end_tag > "</"
': 'punctuation.definition.tag.begin'
'
start_tag > ">",
end_tag > ">"
': 'punctuation.definition.tag.end'

'attribute > "="': 'punctuation.separator.key-value.html'

# quoted_attribute_value has three child nodes: ", attribute_value, and ".
# Target the first and last.
# Single quotes and double quotes are targeted in separate selectors because
# of quote-escaping difficulties.
"quoted_attribute_value > '\"':nth-child(0)": 'punctuation.definition.string.begin'
'quoted_attribute_value > "\'":nth-child(0)': 'punctuation.definition.string.begin'
"quoted_attribute_value > '\"':nth-child(2)": 'punctuation.definition.string.end'
'quoted_attribute_value > "\'":nth-child(2)': 'punctuation.definition.string.end'
# Punctuation
'"<"': 'punctuation.definition.tag.html'
'"</"': 'punctuation.definition.tag.html'
'">"': 'punctuation.definition.tag.html'
'"/>"': 'punctuation.definition.tag.html'
'"<!"': 'punctuation.definition.tag.doctype.html'
'doctype > ">"': 'punctuation.definition.tag.doctype.html'
'"\\""': 'punctuation.definition.string.html'
'"\'"': 'punctuation.definition.string.html'
'"="': 'punctuation.association.pair.attribute-value.html'

'ERROR > "<"': 'punctuation.definition.tag.html.invalid.illegal'
'ERROR > "</"': 'punctuation.definition.tag.html.invalid.illegal'
'ERROR > ">"': 'punctuation.definition.tag.html.invalid.illegal'
'ERROR > "/>"': 'punctuation.definition.tag.html.invalid.illegal'
'ERROR > "<!"': 'punctuation.definition.tag.doctype.html.invalid.illegal'
'ERROR > "\\""': 'punctuation.definition.string.html.invalid.illegal'
'ERROR > "\'"': 'punctuation.definition.string.html.invalid.illegal'
'ERROR > "="': 'punctuation.association.pair.html.invalid.illegal'

# Meta
'doctype': 'meta.doctype.html'
26 changes: 13 additions & 13 deletions spec/tree-sitter-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,60 +22,60 @@ describe('Tree-sitter HTML grammar', () => {

// Tag punctuation.
expect(editor.scopeDescriptorForBufferPosition([0, 0]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.tag.begin'
'.text.html.basic .source.html .punctuation.definition.tag.html'
)

expect(editor.scopeDescriptorForBufferPosition([0, 15]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.tag.end'
'.text.html.basic .source.html .punctuation.definition.tag.html'
)

expect(editor.scopeDescriptorForBufferPosition([6, 0]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.tag.begin'
'.text.html.basic .source.html .punctuation.definition.tag.html'
)

expect(editor.scopeDescriptorForBufferPosition([6, 6]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.tag.end'
'.text.html.basic .source.html .punctuation.definition.tag.html'
)

// Attribute-value pair punctuation.
expect(editor.scopeDescriptorForBufferPosition([0, 10]).toString()).toBe(
'.text.html.basic .source.html .punctuation.separator.key-value.html'
'.text.html.basic .source.html .punctuation.association.pair.attribute-value.html'
)

expect(editor.scopeDescriptorForBufferPosition([2, 18]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.string.begin'
'.text.html.basic .source.html .string.quoted.attribute-value.html .punctuation.definition.string.html'
)

expect(editor.scopeDescriptorForBufferPosition([2, 24]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.string.end'
'.text.html.basic .source.html .string.quoted.attribute-value.html .punctuation.definition.string.html'
)

// Ensure an attribute value delimited by single-quotes won't mark a
// double-quote in the value as punctuation.
expect(editor.scopeDescriptorForBufferPosition([3, 15]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.string.begin'
'.text.html.basic .source.html .string.quoted.attribute-value.html .punctuation.definition.string.html'
)

expect(editor.scopeDescriptorForBufferPosition([3, 16]).toString()).toBe(
'.text.html.basic .source.html .string.html'
'.text.html.basic .source.html .string.quoted.attribute-value.html'
)

expect(editor.scopeDescriptorForBufferPosition([3, 17]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.string.end'
'.text.html.basic .source.html .string.quoted.attribute-value.html .punctuation.definition.string.html'
)

// Ensure an attribute value delimited by double-quotes won't mark a
// single-quote in the value as punctuation.
expect(editor.scopeDescriptorForBufferPosition([3, 27]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.string.begin'
'.text.html.basic .source.html .string.quoted.attribute-value.html .punctuation.definition.string.html'
)

expect(editor.scopeDescriptorForBufferPosition([3, 32]).toString()).toBe(
'.text.html.basic .source.html .string.html'
'.text.html.basic .source.html .string.quoted.attribute-value.html'
)

expect(editor.scopeDescriptorForBufferPosition([3, 66]).toString()).toBe(
'.text.html.basic .source.html .punctuation.definition.string.end'
'.text.html.basic .source.html .string.quoted.attribute-value.html .punctuation.definition.string.html'
)
})
})