Options
disableCandidateNormalization
Disables the automatic normalization for selected layout candidates. When enabled, candidates will be inserted as-is without any text normalization processing.
1let keyboard = new SimpleKeyboard({2 enableLayoutCandidates: true,3 layoutCandidates: {4 "e": "é è ê ë"5 },6 disableCandidateNormalization: true7});8 9// Candidates will be inserted exactly as defined10// without any automatic text processing or normalization