Spintax editors
Tools for writing spintax templates: a native Windows editor with a live render, extensions with engine-accurate highlighting, an in-browser playground — and the archive of the desktop app that started it all.
Which tool for which job
| What you need to do | Where it happens |
|---|---|
| Check whether a template is valid | The playground — an online spintax checker: paste it, errors are underlined where they are |
| Spin a template into unique variants | The playground for a quick look; Spintax Studio to generate a whole set at once |
| Export the variants you generated | Studio — one per line as text, or an XLSX workbook |
| Turn a finished article into a template | Writing spintax templates with AI — a model does the conversion, the engine checks it |
| Write and edit with syntax highlighting | Studio, or the VS Code and Sublime Text extensions |
| Look up what a construct does | The syntax reference |
Spintax Studio — the desktop editor
Spintax Studio is a free, native Windows editor shaped like a translator: your template on the left, the text it actually produces on the right. Both the render and the valid / invalid verdict come from the real engine compiled into the app — the Object Pascal implementation from the same family as the JavaScript, PHP and Python ones — not from a second parser that could disagree with it.
- Diagnostics with a position. Errors and warnings carry a line and a column, so an unclosed brace is one click away instead of a reading exercise.
- A visual editor for choices. Open a group beside the caret and edit its alternatives as a list; order permutations and pick a subset without counting brackets.
- Variables and includes, inspected. Definitions, references, session values, undefined names, include targets and whether each one resolved.
- Variants you can reproduce. Generate a set locally, pin it with a seed, export one per line as text or as an XLSX workbook.
- Light and dark themes, 14 interface languages.
It runs entirely offline: no account, no API key, no telemetry, and no Node, PHP or Python runtime to install. There is no AI inside Studio today — AI-assisted authoring is planned for a later release. Until then the pairing that works is let a model draft the template, then open it in Studio to see what it really renders and repair what the model got wrong.
Editor extensions
Engine-accurate syntax highlighting for spintax templates: enumerations, permutations with <config>, variables, directives, conditionals, plurals, comments and nesting.
For VS Code, install 301st.spintax from the Marketplace. For Sublime Text, open the Command Palette, run Package Control: Install Package and pick Spintax.
The playground
Nothing to install: the playground renders templates right in the browser through the same @spintax/core engine — inline diagnostics with line and column, any number of variants per click, shareable URLs.
The origin: Generating The Web (GTW)
Before the extensions and the playground there was a desktop application. GTW defined the syntax standard this site documents; its history and the original installers are preserved below.
History
Generating The Web (GTW) was a Windows application by S5 Development LLC, first released around 2009. It was designed for webmasters and SEO professionals who needed to produce large volumes of unique content from structured templates.
GTW introduced the core syntax that modern spintax implementations follow: enumerations with {curly braces}, permutations with [square brackets] and configurable separators, reusable variables via #set, template composition through #include, and a multi-stage post-processing pipeline for automatic text correction.
The software went through several versions, with 2.0 being the last English release and 2.7 the last Russian release. The original website generating-the-web.com is no longer active.
Some GTW features were specific to the desktop application and are not part of the modern syntax: synonym dictionaries, shingle-based repetition filtering, and correlated constants (#const). The core syntax elements — enumerations, permutations, variables, includes, comments, and post-processing — are fully implemented in the Spintax WordPress plugin.
Downloads
The original GTW installers, preserved from web.archive.org. Provided as-is for reference purposes.
| File | Version | Language | Size |
|---|---|---|---|
| gtw20.exe | 2.0 | English | 1.6 MB |
| gtw27ru.exe | 2.7 | Russian | 2.5 MB |