https://github.com/pyaesoneaungrgn/vscode-myanmar-text-normalization
Myanmar Text Normalization extension for vscode
https://github.com/pyaesoneaungrgn/vscode-myanmar-text-normalization
Last synced: 12 months ago
JSON representation
Myanmar Text Normalization extension for vscode
- Host: GitHub
- URL: https://github.com/pyaesoneaungrgn/vscode-myanmar-text-normalization
- Owner: PyaeSoneAungRgn
- License: mit
- Created: 2023-11-16T13:40:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-18T02:21:21.000Z (over 2 years ago)
- Last Synced: 2025-01-02T15:49:42.103Z (over 1 year ago)
- Language: JavaScript
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Myanmar Text Normalization for VS Code
Myanmar Text Normalization extension for VS Code. This extension uses the normalize function from the [MMStringNormalizer](https://github.com/ayehninnkhine/MMStringNormalizer) project.
VS Code: [https://marketplace.visualstudio.com/items?itemName=PyaeSoneAung.myanmar-text-normalization](https://marketplace.visualstudio.com/items?itemName=PyaeSoneAung.myanmar-text-normalization&ssr=false#overview)
Web: [https://myanmar-text-normalization.pyaesoneaung.dev](https://myanmar-text-normalization.pyaesoneaung.dev/)
## Usage
- Open `Command Palette`
- Search `Normalize Myanmar Text`
### Example Text
```
ကုိ (က + ု + ိ) => ကို (က + ိ + ု)
စက်် (စ + က + ် + ်) => စက် (စ + က + ်)
ဖံွ့ (ဖ + ံ + ွ + ့) => (ဖွံ့)
more...
```
## Keybinding
You will have to create your own keybinding.
- Open `Command Palette`
- Search `Open Keyboard Shortcuts (JSON)`
```json
[
{
"key": "cmd+m",
"command": "myanmarTextNormalization.normalize"
}
]
```
## Credit
[ayehninnkhine/MMStringNormalizer](https://github.com/ayehninnkhine/MMStringNormalizer)