diff options
author | praschke <stel@comfy.monster> | 2023-10-16 23:02:41 +0100 |
---|---|---|
committer | praschke <stel@comfy.monster> | 2023-10-17 22:44:14 +0100 |
commit | a454cc3ca1c34e51de13fe21f375f1f47d96a1e9 (patch) | |
tree | eefb8097aa768dedfda6d59bcf46d9861bd4e391 /docs/templates.md | |
parent | 4527cc03fe88cd747d0eb62a65d9d54247653483 (diff) |
remove kanjiLinks and sanitizeCssClass
Diffstat (limited to 'docs/templates.md')
-rw-r--r-- | docs/templates.md | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/docs/templates.md b/docs/templates.md index f021dea6..86c60db9 100644 --- a/docs/templates.md +++ b/docs/templates.md @@ -842,60 +842,3 @@ Converts hiragana text to katakana. ヨミチャン ヨミチャン ヨミチャン ``` </details> - - -## Legacy Helpers - -Yomichan has historically used Handlebars templates to generate the HTML used on the search page and results popup. -To simplify the and improve Yomichan's capabilities, the HTML elements are now generated directly using a different process. - -As such, there are several leftover Handlebars helpers that do not have much utility for Anki templates, but are kept for compatibility purposes. - - -### `kanjiLinks` - -Replaces kanji characters in the text with linkified versions. - -<details> - <summary>Syntax:</summary> - - <code>{{#kanjiLinks}}<i>text</i>{{/kanjiLinks}}</code> -</details> -<details> - <summary>Example:</summary> - - ```handlebars - {{#kanjiLinks}}読む{{/kanjiLinks}} - ``` - - Output: - ```html - <a href="#" class="kanji-link">読</a>む - ``` - - Preview: - <pre><a href="#" class="kanji-link">読</a>む</pre> -</details> - - -### `sanitizeCssClass` - -Sanitizes text so it can be used as a CSS class name. - -<details> - <summary>Syntax:</summary> - - <code>{{#sanitizeCssClass}}<i>text</i>{{/sanitizeCssClass}}</code> -</details> -<details> - <summary>Example:</summary> - - ```handlebars - {{#sanitizeCssClass}}some text with many types of characters !@#$%^ 読む{{/sanitizeCssClass}} - ``` - - Output: - ```html - some_text_with_many_types_of_characters________読む - ``` -</details> |