An open API service indexing awesome lists of open source software.

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

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)