diff options
author | Simon McVittie <smcv@debian.org> | 2019-02-03 12:52:42 +0000 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2019-02-03 12:52:42 +0000 |
commit | 15ddbb1c70fecb052ef45ae96574a4d888578d11 (patch) | |
tree | 84300060886f245064b496dfb1d23a88335491cd /t | |
parent | fae4cce06ab4b5adf7ca2a9e3f43ea2850a94148 (diff) | |
download | ikiwiki-15ddbb1c70fecb052ef45ae96574a4d888578d11.tar ikiwiki-15ddbb1c70fecb052ef45ae96574a4d888578d11.tar.gz |
trail: Allow unescaped punctuation in pagenames
By processing the pagenames through linkpage, we let users specify
page names that contain non-alphanumerics in a more natural way.
Signed-off-by: Simon McVittie <smcv@debian.org>
Diffstat (limited to 't')
-rwxr-xr-x | t/trail.t | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -186,13 +186,10 @@ check_no_trail("snake.html", "wind_in_the_willows"); check_trail("self_referential.html", "n= p=", "self_referential"); -TODO: { -local $TODO = 'should be able to specify page names without using numeric escapes'; check_trail("unicode/__172__.html", "n=unicode/\x{04D2} p=", "unicode"); check_trail("unicode/\x{04D2}.html", "n=unicode/__8800__ p=unicode/__172__", "unicode"); check_trail("unicode/__8800__.html", "n=unicode/__128169__ p=unicode/\x{04D2}", "unicode"); check_trail("unicode/__128169__.html", "n= p=unicode/__8800__", "unicode"); -} check_trail("unicode/__172__.html", "n=unicode/\x{04D2} p=", "unicode2"); check_trail("unicode/\x{04D2}.html", "n=unicode/__8800__ p=unicode/__172__", "unicode2"); |