Skip to content

Instantly share code, notes, and snippets.

@knoebber
Created June 12, 2022 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knoebber/0834d29b8a5f0710de239041e6a7627b to your computer and use it in GitHub Desktop.
Save knoebber/0834d29b8a5f0710de239041e6a7627b to your computer and use it in GitHub Desktop.
Example of desired web-mode elixir .heex syntax highlighting
<.two_column>
<:title>
Pipelines
</:title>
<:left_content>
<.card_with_title>
<:title>
Listing Pipelines
</:title>
<:content>
<.pipelines_table pipelines={@pipelines} />
</:content>
</.card_with_title>
</:left_content>
<:right_content>
<.card_with_title>
<:title>
Filters
</:title>
<:content>
<.form let={f} for={@filters_changeset} phx-change="filter-pipelines">
<.input_label label="Client Name">
<.text_input form={f} name={:client_name} />
</.input_label>
<.input_label label="Pipeline Type">
<.text input form={f} name={:pipeline_type} />
</.input_label>
</.form>
</:content>
</.card_with_title>
</:right_content>
</.two_column>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment