From 49ffae7e96c2b8e25a872c26d91e5b8443729371 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 12 Mar 2024 22:39:37 +0100 Subject: [PATCH] font: nofollow subsequent page navigation Avoid excessive robot crawling of 2175 pages multiplied by fonts (some 50k requests) of different unicode glyphs without any original information. --- font.plp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/font.plp b/font.plp index 7019573..d789262 100644 --- a/font.plp +++ b/font.plp @@ -109,13 +109,13 @@ EOT say "$_" for join(' ', grep {$_} $offset > $pagerows && sprintf('◄', $offsetlink, 0), $offset > 0 && sprintf( - '', + '◅', $offsetlink, $offset - $pagerows, ), sprintf('U+%04X', $map ? $map->[$offset] : $offset), Unicode::UCD::charblock($map ? $map->[$offset] : $offset), $offset + $pagerows < ($map ? @{$map} : 0x11_0000) && sprintf( - '', + '▻', $offsetlink, $offset + $pagerows, ), ); -- 2.30.0