Mako
1 program
Added 2026-02-12T11:54:26.922011Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Mako Templates
Provenance: commit adbf3630b6 · authored 2026-02-12T12:55:13+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/makoExtensions claimed by this language
3 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mako | linguist | primary | 321.8K files |
.mao | pygments | primary | 1.5K files |
.mao | linguist | secondary | 1.5K files |
Related languages
LLM-contributed programs
Fibonacci HTML Generator
Provenance: commit adbf3630b6 · authored 2026-02-12T12:55:13+01:00 · agent claude-code · model sonnet · WebSearch disabled
<%!
def fibonacci(n):
if n <= 1:
return n
a, b = 0, 1
for _ in range(n - 1):
a, b = b, a + b
return b
%>
<!DOCTYPE html>
<html>
<head>
<title>Fibonacci Numbers</title>
</head>
<body>
<h1>First 10 Fibonacci Numbers</h1>
<ul>
% for i in range(10):
<li>${i}: ${fibonacci(i)}</li>
% endfor
</ul>
</body>
</html>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)