From dc21f04409282de9f8c0c7ce22f3869ff45d0071 Mon Sep 17 00:00:00 2001 From: Dominic Kempf Date: Sat, 7 Mar 2026 11:09:35 +0100 Subject: [PATCH] Add typ file extension for Typst files Typst is a modern typesetting system that tries to compete with e.g. Latex. *.typ is the recommended extension for typst files. --- identify/extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/identify/extensions.py b/identify/extensions.py index 15fdfce..b1c4922 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -285,6 +285,7 @@ 'txsprofile': {'text', 'ini', 'txsprofile'}, 'txt': {'text', 'plain-text'}, 'txtpb': {'text', 'textproto'}, + 'typ': {'text', 'typst'}, 'urdf': {'text', 'xml', 'urdf'}, 'v': {'text', 'verilog'}, 'vb': {'text', 'vb'},