/accent-transformer

Supersimple Pharo library for transforming accented characters

Primary LanguageSmalltalkMIT LicenseMIT

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

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

Baseline item

spec
	baseline: 'AccentTransformer'
	with: [ spec repository: 'github://JanBliznicenko/accent-transformer' ].