- Download
wp-kakitai.zipfrom Releases - In WordPress: Plugins → Add New → Upload Plugin
- Choose the ZIP file and click Install Now
- Activate the plugin
- Open the Gutenberg editor
- Select Japanese text with kanji
- Click the 🌐 Furigana button in the toolbar
- Done! Click again to remove furigana
# Clone and install
git clone https://github.com/firestar300/wp-kakitai.git
cd wp-kakitai
npm install
composer install
# Start development
npm startnpm run build # Production build
npm run lint:js # Lint JavaScript
npm run lint:css # Lint CSS
composer lint # Lint PHP
npm run format # Auto-format code# Create feature branch
git checkout -b feature/my-feature
# Make changes, then commit
git add .
git commit -m "feat: description"
git push origin feature/my-feature
# Open Pull Request on GitHub# 1. Update version in:
# - wp-kakitai.php (line 5)
# - readme.txt (line 6)
# - package.json (line 3)
# - CHANGELOG.md
# 2. Commit and tag
git add .
git commit -m "chore: bump version to 1.0.0"
git push origin main
git tag -a v1.0.0 -m "Release version 1.0.0"
git push origin v1.0.0
# 3. GitHub Actions automatically:
# - Builds the plugin
# - Creates a release
# - Uploads wp-kakitai.zipSee RELEASE.md for detailed instructions.
- README.md - Full documentation
- CHANGELOG.md - Version history
- CONTRIBUTING.md - How to contribute
- RELEASE.md - Detailed release process
Read CONTRIBUTING.md and open a Pull Request!
Need more help? Check the full README.md or open a discussion.