Module:anagrammes/fr

Définition, traduction, prononciation, anagramme et synonyme sur le dictionnaire libre Wiktionnaire.

La documentation pour ce module peut être créée à Module:anagrammes/fr/Documentation

return {
  -- List of characters to keep unchanged, empty for French
  keep = {},
  -- Table of character transformations, meant for characters without diacritics (ligatures, etc.)
  mappings = {
    ["ʿ"] = "",
    ["½"] = "12",
    ["¼"] = "14",
    ["²"] = "2",
    ["æ"] = "ae",
    ["ꞵ"] = "b", -- Bêta latin
    ["β"] = "b", -- Bêta grec
    ["ɛ"] = "e",
    ["ɣ"] = "g", -- Gamma latin
    ["γ"] = "g", -- Gamma grec
    ["ı"] = "i",
    ["ɨ"] = "i",
    ["ł"] = "l",
    ["m̐"] = "m",
    ["μ"] = "m",
    ["º"] = "o",
    ["ɔ"] = "o",
    ["ø"] = "o",
    ["ω"] = "o",
    ["œ"] = "oe",
    ["σ"] = "s",
    ["ß"] = "ss",
    ["ʋ"] = "v",
  },
}