Created
June 12, 2022 18:02
-
-
Save knoebber/0834d29b8a5f0710de239041e6a7627b to your computer and use it in GitHub Desktop.
Example of desired web-mode elixir .heex syntax highlighting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<.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