This file contains hidden or 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
| javascript: (function () { | |
| document.addEventListener( | |
| "keydown", | |
| (e) => { | |
| if ((e.key === "Enter" && e.isComposing) || e.keyCode === 229) { | |
| e.stopPropagation(); | |
| } | |
| }, | |
| { capture: true }, | |
| ); |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # speckit-language-requirement.sh | |
| # | |
| # spec-kit の各コマンド定義ファイル (.md) の "## User Input" 直前に | |
| # "## Language Requirement" セクションを挿入する。 | |
| set -euo pipefail | |
| BLOCK='## Language Requirement |