Options

disableCandidateNormalization

Disables the automatic normalization for selected layout candidates. When enabled, candidates will be inserted as-is without any text normalization processing.

let keyboard = new SimpleKeyboard({
  enableLayoutCandidates: true,
  layoutCandidates: {
    "e": "é è ê ë"
  },
  disableCandidateNormalization: true
});

// Candidates will be inserted exactly as defined
// without any automatic text processing or normalization
Language: javascript | Theme: light | Line Numbers: false