-
Notifications
You must be signed in to change notification settings - Fork 155
Add Phoenix LiveEEx Template (.leex) file type support. #487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,11 @@ | |
it 'without escaped parenthesis' do | ||
expect('~S(\( )').not_to include_elixir_syntax('elixirRegexEscapePunctuation', '( ') | ||
end | ||
|
||
it 'Live EEx' do | ||
expect('~L"""liveview template"""').to include_elixir_syntax('elixirSigilDelimiter', '""""') | ||
expect('~L"""liveview template"""').to include_elixir_syntax('elixirSigilDelimiter', '""""') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these expects different? Could we just have one? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If possible it would be nice to get a test on the inner sigil syntax being recognized. I can see if I can get one written There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I removed the duplicated line, but haven't got time to write test for inner sigil syntax yet. |
||
end | ||
end | ||
|
||
describe 'lower case' do | ||
|
Uh oh!
There was an error while loading. Please reload this page.