spb/tendril Public
Tendril — web ingestion platform (scrape/crawl/map/search) on macOS Apple Silicon: WebKit fidelity, authenticated pages, deterministic testable extraction. A self-hosted Firecrawl alternative.
JavaScript 82.6%
TypeScript 11.8%
HTML 5.3%
1<!doctype html>2<html lang="en">3<head>4 <meta charset="utf-8">5 <title>Trellis Climbing Frame — GardenCo</title>6 <link rel="canonical" href="https://gardenco.example/products/trellis-frame">7 <meta name="description" content="A powder-coated steel trellis for climbing plants.">8 <meta property="og:title" content="Trellis Climbing Frame">9 <meta property="og:image" content="https://cdn.gardenco.example/trellis.jpg">10 <meta property="og:site_name" content="GardenCo">11 <script type="application/ld+json">12 {13 "@context": "https://schema.org",14 "@type": "Product",15 "name": "Trellis Climbing Frame",16 "sku": "TRL-2026",17 "image": "https://cdn.gardenco.example/trellis.jpg",18 "offers": {19 "@type": "Offer",20 "priceCurrency": "USD",21 "price": "49.00",22 "availability": "https://schema.org/InStock"23 }24 }25 </script>26</head>27<body>28 <header><nav><a href="/">Home</a> <a href="/shop">Shop</a></nav></header>29 <main>30 <article class="product">31 <h1>Trellis Climbing Frame</h1>32 <p class="price">$49.00</p>33 <img class="product" data-src="/img/trellis-800.jpg" alt="Trellis frame">34 <div id="desc">35 <p>The Trellis Climbing Frame is a powder-coated steel lattice that gives tendrils and vines a sturdy support to climb. It resists rust for many seasons of outdoor use.</p>36 <table class="specs">37 <thead><tr><th>Spec</th><th>Value</th></tr></thead>38 <tbody>39 <tr><td>Material</td><td>Powder-coated steel</td></tr>40 <tr><td>Height</td><td>180 cm</td></tr>41 </tbody>42 </table>43 </div>44 <a href="/products/trellis-frame/reviews">Read 24 reviews</a>45 </article>46 </main>47 <footer><a href="/privacy">Privacy policy</a></footer>48</body>49</html>50