From 30de46549dd219916aadc12ec02efdb1f2d127aa Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 8 Jul 2025 23:34:43 +0300 Subject: feat: add AWK language support for syntax highlighting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add AWK to language detection (.awk files) - Add AWK to code extractor language extensions - Add AWK to syntax highlighting mapping - Note: cpuinfo project is detected as Make-only because the main script has no file extension (it's a shell script with embedded AWK) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- internal/showcase/code_extractor.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/showcase/code_extractor.go') diff --git a/internal/showcase/code_extractor.go b/internal/showcase/code_extractor.go index b51761c..98e1aca 100644 --- a/internal/showcase/code_extractor.go +++ b/internal/showcase/code_extractor.go @@ -48,6 +48,7 @@ func extractCodeSnippet(repoPath string, languages []LanguageStats) (string, str "SQL": {".sql"}, "Make": {"Makefile", "makefile", "GNUmakefile"}, "HCL": {".tf", ".tfvars", ".hcl"}, + "AWK": {".awk"}, } // Get file extensions for the primary language -- cgit v1.2.3