accent-transformer

Description

Supersimple Pharo library for transforming accented characters

Details

Source
GitHub
Dialect
pharo (25% confidence)
License
MIT
Stars
1
Created
Aug. 26, 2022
Updated
Feb. 3, 2023

README excerpt

# AccentTransformer
Supersimple Pharo library for transforming accented characters

### Known limitations

* Not all characters are includes, only european ones.
* It only can translate single character into another single character. As a result, it translates ß into single S, Æ into E etc.
* It is not very efficient - using simple dictionary of replacements.

### Installation
```smalltalk
Metacello new
	baseline: 'AccentTransformer';
	repository: 'github://JanBliznicenko/accent-transformer';
	load.
```

### Baseline item
```smalltalk
spec
	baseline: 'AccentTransformer'
	with: [ spec repository: 'github://JanBliznicenko/accent-transformer' ].
```
← Back to results