TATSUNO “Taz” Yasuhiro

Results 90 issues of TATSUNO “Taz” Yasuhiro

![image](https://github.com/user-attachments/assets/fa094656-2ab0-4745-9186-d4ec53dee299) When not logged in to CodeCov, the extension just says `Coverage report not available`. I think it is a bit nice if the message navigates to CodeCov so user...

enhancement

Closes https://github.com/thymeleaf/thymeleaf/issues/1011 If I understand the restrictions correctly, the intention is for higher security of expressions as described in https://github.com/thymeleaf/thymeleaf/issues/871. And the implementation was changed from block-list to allow-list, as...

## What does this PR do? Add `org.thymeleaf.engine.IterationStatusVar` in Thymeleaf's reflect-config.json. Ref. https://github.com/thymeleaf/thymeleaf/issues/987 ## Code sections where the PR accesses files, network, docker or some external service - No I/O,...

Closes #3324 This implements [206 Partial Content](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206)(also called as range requests) support in `serve-static` middleware. It will be useful specially for seeking a video file. `serve-static` base implementation now accepts...

This PR is going to cover `jsx-runtime.ts` file which is covered 0% now. https://app.codecov.io/github/honojs/hono/blob/main/src%2Fjsx%2Fjsx-runtime.ts ![image](https://github.com/user-attachments/assets/5a4964c9-3829-4eba-a6f9-26a131851d0a) ### The author should do the following, if applicable - [ ] Add tests -...

## :bookmark_tabs: Summary Resolves #2583 ## :straight_ruler: Design Decisions Describe the way your implementation works or what design decisions you made if applicable. ### :clipboard: Tasks Make sure you -...

node-server implements its own `serverStatic` middleware. https://github.com/honojs/node-server/blob/74e86a28f375e5acd52e342519ff2b1110a95c16/src/serve-static.ts However, `serveStatic` base implementation is provided in Hono main repo: https://github.com/honojs/hono/blob/c0d782cd649525ce40489906a24d83607deede29/src/middleware/serve-static/index.ts The base implementation is used by Bun adapter Deno adapter, which drastically...

Closes #19 - Adds `utils/halfwidth_katakana_to_hiragana`. - Counterintuitively, this is not "half to full" conversion. Because, `..._to_hiragana` util can be leveraged in `to_hiragana`'s character loops so the input is not enumerated...

It would be handy if this crate supports hankaku-kana (half-width) to hiragana, zenkaku-kana (full-width kana) and romaji. ```rust "アイウエオ".to_kana(); // アイウエオ, as it is "アイウエオ".to_hiragana(); // あいうえお. There is no...