You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library hard codes the "unsafe" characters as:
my$unsafe = '^A-Za-z0-9\-\._' . $safe;
Then it allows you to add the following as additional safe characters, if you have + in your template key: ```perl
my $RESERVED = q(:/?#[]@!$&'()*+,;=);
In some situations I wish to add `~` to the safe list, but no other characters.
In other situations I also want to add `/` to the safe list.
In most cases, I do not want the full reserved list.
Feature request: a way to define which characters shouldn't get escaped/encoded
The text was updated successfully, but these errors were encountered:
This library hard codes the "unsafe" characters as:
Then it allows you to add the following as additional safe characters, if you have$RESERVED = q(:/?#[]@!$ &'()*+,;=);
+
in your template key: ```perlmy
The text was updated successfully, but these errors were encountered: