// This is a TextMate grammar distributed by `starry-night`. // This grammar is developed at // // and licensed `apache-2.0`. // See for more info. /** * @import {Grammar} from '@wooorm/starry-night' */ /** @type {Grammar} */ const grammar = { dependencies: ['text.elixir', 'text.html.basic'], extensions: ['.html.eex', '.heex', '.leex'], injections: { 'R:text.html.elixir meta.tag meta.attribute string.quoted': { patterns: [{include: 'text.elixir'}] } }, names: ['html+eex', 'eex', 'heex', 'leex'], patterns: [{include: 'text.elixir'}, {include: 'text.html.basic'}], scopeName: 'text.html.elixir' } export default grammar