There is a issue https://github.com/Leaflet/Leaflet/pull/6208 where the ` ' ` is not correct parsed, the regex have to be changed: [Doc](https://leafletjs.com/reference-1.7.1.html#control-zoom-zoomouttext) ``` @option zoomOutText: String = '−' ``` Regex: ``` \s*(?:)@(?:)((?:)\S+)(?:)(?:\s+(?:)((?:)[^;\n]+)){0,1} ``` When the `;` is removed it works. I tried do change it and select until the exact match `;\n` with or without `;` but the regex is to complicated for me.