Cheetah

1 program Added 2026-02-12T13:57:05Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: CheetahTemplate, Cheetah3
Provenance: commit e503eb611a · authored 2026-02-12T14:57:46+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/cheetah
LLM (this repo) · 1PldbPygments

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.tmplpygmentsprimary1.4M files
.sptpygmentssecondary65.4K files

Related languages

Mako (0.18)Template Toolkit (0.18)Liquid (0.17)FreeMarker (0.14)NVelocity (0.14)

LLM-contributed programs

Shopping Cart Template

Provenance: commit e503eb611a · authored 2026-02-12T14:57:46+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.tmpl · added: 2026-02-12T13:57:05Z
##
## Shopping Cart Template
## Generates HTML for a shopping cart
#set $total = 0
<html>
<head>
    <title>Shopping Cart</title>
</head>
<body>
    <h1>Your Shopping Cart</h1>
    #if $items
    <table border="1">
        <tr>
            <th>Item</th>
            <th>Price</th>
            <th>Quantity</th>
            <th>Subtotal</th>
        </tr>
        #for $item in $items
        <tr>
            <td>$item.name</td>
            <td>$$item.price</td>
            <td>$item.quantity</td>
            #set $subtotal = $item.price * $item.quantity
            #set $total = $total + $subtotal
            <td>$$subtotal</td>
        </tr>
        #end for
        <tr>
            <td colspan="3"><b>Total:</b></td>
            <td><b>$$total</b></td>
        </tr>
    </table>
    #else
    <p>Your cart is empty.</p>
    #end if
</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.)

Contribute — propose a file extension

Tell us where to find evidence about Cheetah (mapped to pl/cheetah). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Cheetah/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Cheesecake Chef →