aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCashew <52880648+Scrub1492@users.noreply.github.com>2023-12-18 19:34:32 +0900
committerGitHub <noreply@github.com>2023-12-18 10:34:32 +0000
commiteb7bf9542c92ea7937d4b4a699ae2d47270da96b (patch)
treee129f31383b91987177b6b19ad242de35422e1c4 /docs
parentfef568b89db1517481f76b0acfcd6796da693d20 (diff)
Replace occurrences of よみちゃん with よみたん (#377)
Diffstat (limited to 'docs')
-rw-r--r--docs/templates.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/templates.md b/docs/templates.md
index 18274ed5..ddab4390 100644
--- a/docs/templates.md
+++ b/docs/templates.md
@@ -523,16 +523,16 @@ Returns an array of the mora for a kana string.
<summary>Example:</summary>
```handlebars
- {{#each (getKanaMorae "よみちゃん")}}{{{.}}}<br>{{/each}}
+ {{#each (getKanaMorae "よみたん")}}{{{.}}}<br>{{/each}}
```
Output:
```html
- よ<br>み<br>ちゃ<br>ん<br>
+ よ<br>み<br>た<br>ん<br>
```
Preview:
- <pre>よ<br>み<br>ちゃ<br>ん<br></pre>
+ <pre>よ<br>み<br>た<br>ん<br></pre>
</details>
@@ -553,9 +553,9 @@ Returns the type of a value. `#typeof` in the block form will always return `'st
<summary>Example:</summary>
```handlebars
- {{typeof "よみちゃん"}}
+ {{typeof "よみたん"}}
{{typeof 1}}
- {{#typeof}}よみちゃん{{/typeof}}
+ {{#typeof}}よみたん{{/typeof}}
```
Output:
@@ -799,16 +799,16 @@ Converts katakana text to hiragana.
<summary>Example:</summary>
```handlebars
- {{hiragana "よみちゃん ヨミちゃん ヨミチャン"}}
- {{#hiragana}}よみちゃん ヨミちゃん ヨミチャン{{/hiragana}}
+ {{hiragana "よみたん ヨミたん ヨミタン"}}
+ {{#hiragana}}よみたん ヨミたん ヨミタン{{/hiragana}}
{{#hiragana}}ローマ字{{/hiragana}}
{{#hiragana keepProlongedSoundMarks=true}}ローマ字{{/hiragana}}
```
Output:
```html
- よみちゃん よみちゃん よみちゃん
- よみちゃん よみちゃん よみちゃん
+ よみたん よみたん よみたん
+ よみたん よみたん よみたん
ろうま字
ろーま字
```
@@ -832,13 +832,13 @@ Converts hiragana text to katakana.
<summary>Example:</summary>
```handlebars
- {{katakana "よみちゃん ヨミちゃん ヨミチャン"}}
- {{#katakana}}よみちゃん ヨミちゃん ヨミチャン{{/katakana}}
+ {{katakana "よみたん ヨミたん ヨミタン"}}
+ {{#katakana}}よみたん ヨミたん ヨミタン{{/katakana}}
```
Output:
```html
- ヨミチャン ヨミチャン ヨミチャン
- ヨミチャン ヨミチャン ヨミチャン
+ ヨミタン ヨミタン ヨミタン
+ ヨミタン ヨミタン ヨミタン
```
</details>