mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-14 09:03:15 +00:00
b2737ec715
Phase 1 — internal linking: - Real [related] index (tags/keywords/category) in hugo.toml; rewrite related-posts.html to use .Related instead of "first 4 posts", which had left 12/20 posts with zero inbound links. - Add tags to 6 previously untagged posts. Phase 2 — de-cannibalization of the transactional cluster: - Soft-301 mechanism (redirectTo -> meta refresh + noindex,follow) in baseof. - xslt-online-editor-guide redirects to the app (pure duplicate of home). - xslt-validator-online retargeted informational; drop the "common errors" section that cannibalized the errors hub, link to it instead. - Migrate why-xslt-playground-online-editor into /about/ with an alias. - Remove the duplicate <h1> on the app landing page. Phase 3 — consolidate authority on the money domain: - baseURL -> https://xsltplayground.com/blog/ (served via NPM reverse proxy to GitHub Pages; subdomain will 301 to the subpath). - Rewrite internal blog links to /blog/... and cross-domain app links to xsltplayground.com/blog/... Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KZntQUfw463NW4ftgSjWw5
35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
# XSLT Playground
|
|
|
|
> XSLT Playground (xsltplayground.com) is a free online XSLT editor and tester that runs XSLT 1.0, 2.0, and 3.0 transformations using the Saxon processor. No installation required.
|
|
|
|
## What it does
|
|
|
|
- Run and test XSLT stylesheets directly in the browser
|
|
- Supports XSLT 1.0, 2.0, and 3.0 (Saxon-powered backend)
|
|
- Multiple XML inputs and parameters per transformation
|
|
- Trace output to inspect execution step by step
|
|
- Up to 3 independent workspaces, each with its own XSLT, XML input, parameters, and result
|
|
- Export and import workspaces as JSON to share setups
|
|
|
|
## Who uses it
|
|
|
|
Integration engineers, developers working with enterprise middleware (SAP, MuleSoft, Tibco, IBM), XML data engineers, and anyone who needs to write or debug XSLT without a heavy desktop IDE.
|
|
|
|
## Custom Saxon extensions
|
|
|
|
The backend exposes custom extension functions under `xmlns:tib="http://www.tibco.com/bw/xslt/custom-functions"`, including:
|
|
- `tib:uuid()` — generate a UUID
|
|
- `tib:timestamp()` — current timestamp
|
|
- `tib:addToDate()` — date arithmetic
|
|
- `tib:base64encode()` / `tib:base64decode()`
|
|
|
|
## Blog
|
|
|
|
Tutorials, guides, and release notes at xsltplayground.com/blog. Topics include XSLT 3.0 features, debugging patterns, integration architecture, performance tuning, and XML-to-JSON transformations.
|
|
|
|
## Links
|
|
|
|
- Tool: https://xsltplayground.com
|
|
- Blog: https://xsltplayground.com/blog
|
|
- Source: https://github.com/alexandrev/xslt-lab
|