-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: updated java to 21 * refactor: updated gradle wrapper to 8.7 * refactor: updated cicd to java 21 * chore: updated README.md * refactor: added try catch for executioner * refactor: added line trim for meaning.ftl * refactor: removed shutdown invocation * chore: added spotless * style: style
- Loading branch information
Showing
8 changed files
with
97 additions
and
77 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,42 +1,42 @@ | ||
<#if ankiData.transcription?? && ankiData.transcription?has_content> | ||
<p> | ||
transcription: ${ankiData.transcription} | ||
</p> | ||
<p> <#t> | ||
transcription: ${ankiData.transcription}<#t> | ||
</p><#t> | ||
</#if> | ||
<ul> | ||
<ul><#t> | ||
<#if ankiData.meanings?? && ankiData.meanings?has_content> | ||
<#list ankiData.meanings as meaning> | ||
<li><span style="color:yellow">${meaning.type()}</span> | ||
<dl> | ||
<li><span style="color:yellow">${meaning.type()}</span><#t> | ||
<dl><#t> | ||
<#if meaning.definitions()?has_content> | ||
<dt><h5 style="margin-bottom:0;margin-top:0;color:blue">definitions</h5></dt> | ||
<dt><h5 style="margin-bottom:0;margin-top:0;color:blue">definitions</h5></dt><#t> | ||
<#list meaning.definitions() as definition> | ||
<dd style="margin-bottom:10px"> | ||
<p style="margin-bottom: 0px"> | ||
* ${definition.info()} | ||
</p> | ||
<dd style="margin-bottom:10px"><#t> | ||
<p style="margin-bottom: 0px"><#t> | ||
* ${definition.info()}<#t> | ||
</p><#t> | ||
<#if definition.example()?? && definition.example()?has_content> | ||
<p style="margin-top:1px"> | ||
<b>example</b>: <span><i>${definition.example()}</i></span> | ||
</p> | ||
<p style="margin-top:1px"><#t> | ||
<b>example</b>: <span><i>${definition.example()}</i></span><#t> | ||
</p><#t> | ||
</#if> | ||
</dd> | ||
</dd><#t> | ||
</#list> | ||
</#if> | ||
<#if meaning.synonyms()?has_content> | ||
<dt><h5 style="margin-bottom:0;margin-top:0;color:green">synonyms</h5></dt> | ||
<dt><h5 style="margin-bottom:0;margin-top:0;color:green">synonyms</h5></dt><#t> | ||
<#list meaning.synonyms() as synonym> | ||
<dd>${synonym}</dd> | ||
<dd>${synonym}</dd><#t> | ||
</#list> | ||
</#if> | ||
<#if meaning.antonyms()?has_content> | ||
<dt><h5 style="margin-bottom:0;margin-top:10px;color:red">antonyms</h5></dt> | ||
<dt><h5 style="margin-bottom:0;margin-top:10px;color:red">antonyms</h5></dt><#t> | ||
<#list meaning.antonyms() as antonym> | ||
<dd>${antonym}</dd> | ||
<dd>${antonym}</dd><#t> | ||
</#list> | ||
</#if> | ||
</dl> | ||
</li> | ||
</dl><#t> | ||
</li><#t> | ||
</#list> | ||
</#if> | ||
</ul> | ||
</ul><#t> |