From d34fd8a49cd48bb24dbe44654ba3661abbc93bff Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Tue, 23 Sep 2025 13:01:24 +0100 Subject: [PATCH] Add .piskel extension Piskel is a browser-based sprite editor. Its file format is JSON-based (though the JSON contains base64-encoded PNG data). Recognise the .piskel extension and identify it analogously to .svg: it is text, image, json and piskel. https://github.com/piskelapp/piskel http://justsolve.archiveteam.org/wiki/Piskel_canvas --- identify/extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/identify/extensions.py b/identify/extensions.py index 8da71a7..5d49d87 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -194,6 +194,7 @@ 'php4': {'text', 'php'}, 'php5': {'text', 'php'}, 'phtml': {'text', 'php'}, + 'piskel': {'text', 'piskel', 'json'}, 'pl': {'text', 'perl'}, 'plantuml': {'text', 'plantuml'}, 'pm': {'text', 'perl'},