generated from JetBrains/intellij-platform-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This happened because the lexer got confused by the unknown Tag `imagekit` which comes from an addon. It was lexed and parsed as a variable and the syntax does not allow dynamic bindings for variables, only for Tags. This PR introduces an `T_UNKOWN_TAG` token, which is returned by the lexer when he sees an Identifier which is followed by one or more whitespaces and a colon. The formatting issues was just a side effect of the wrong parsing. Closes #120
- Loading branch information
Showing
11 changed files
with
3,145 additions
and
2,850 deletions.
There are no files selected for viewing
5,603 changes: 2,773 additions & 2,830 deletions
5,603
src/main/gen/de/arrobait/antlers/grammar/AntlersLexer.java
Large diffs are not rendered by default.
Oops, something went wrong.
22 changes: 10 additions & 12 deletions
22
src/main/gen/de/arrobait/antlers/parser/AntlersParser.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
src/main/gen/de/arrobait/antlers/psi/impl/AntlersTagNameImpl.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{ nocache }} {{ collection from="training_log" status:is="published" limit="20" | ||
sort="date:desc" }} | ||
<div class="flex {{ index === 0 ? 'col-span-3 row-span-3 sm:col-span-2 sm:row-span-2' : '' }}"> | ||
<a class="group relative flex" href="{{ url }}"> | ||
{{ if images }} {{ images limit="1" }} <img class="object-cover relative z-0" src="{{ | ||
imagekit :src=" path" n="home_thumbnail" }}" alt=""/> {{ /images }} {{ /if }} {{ if | ||
index===0 }} | ||
<div | ||
class="pointer-events-none absolute bottom-0 right-0 z-20 bg-black bg-opacity-75 px-4 py-2 text-xs font-semibold text-cfhsv-blue group-hover:text-cfhsv-light-blue" | ||
> | ||
{{ title }} | ||
</div> | ||
{{ /if }} | ||
|
||
<div | ||
class="pointer-events-none absolute inset-0 z-10 bg-black opacity-20 transition-all duration-200 group-hover:opacity-0" | ||
></div> | ||
</a> | ||
</div> | ||
{{ /collection }} {{ /nocache }} |
Oops, something went wrong.