fantasycalendar / FoundryVTT-Sequencer

This module implements a basic pipeline that can be used for managing the flow of a set of functions, effects, sounds, and macros.
Other
47 stars 25 forks source link

Support for non-english characters #259

Closed Elfrey closed 3 months ago

Elfrey commented 3 months ago

The regex [A-Za-z0-9 .*_-] only includes English letters and digits. To make this regex work with any language, we can use Unicode property escapes, which are supported in modern JavaScript engines.

Haxxer commented 3 months ago

Thank you for the pull request, but I went about fixing it slightly differently!