diff --git a/docs/.DS_Store b/docs/.DS_Store deleted file mode 100644 index b5c7ca59..00000000 Binary files a/docs/.DS_Store and /dev/null differ diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index 8d1c8b69..00000000 --- a/docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ - diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index 299aff43..00000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -blog.xsltplayground.com \ No newline at end of file diff --git a/docs/about/index.html b/docs/about/index.html deleted file mode 100644 index 9f3ed232..00000000 --- a/docs/about/index.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - About | XSLT Playground - - - - - -
- - -
-
-

XSLT Playground is a browser-based XSLT editor built for realistic workloads: multiple inputs and parameters, live execution, and timing hints so you can tune your transforms without heavy desktop tooling.

-

This site exists to give you:

-
    -
  • Release notes and product updates.
  • -
  • Short guides that mirror common integration tasks.
  • -
  • Deployment options, including a Helm chart you can point at your own cluster.
  • -
-

Everything is Markdown in site/content/, and the generated output lives in docs/ so you can publish easily via GitHub Pages alongside the chart index.

-
-
-
- - - diff --git a/docs/css/main.css b/docs/css/main.css deleted file mode 100644 index d19e6bc4..00000000 --- a/docs/css/main.css +++ /dev/null @@ -1,238 +0,0 @@ -:root { - --bg: #0b1021; - --panel: #0f172a; - --accent: #32d5ff; - --accent-2: #ff7e67; - --text: #e6edf3; - --muted: #9fb2c8; - --border: #1f2a3d; - --shadow: 0 20px 40px rgba(0, 0, 0, 0.35); - font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -} - -* { box-sizing: border-box; } - -body { - margin: 0; - background: radial-gradient(circle at 20% 20%, #11223f, #0b1021 45%), radial-gradient(circle at 80% 0%, #182743, #0b1021 40%), var(--bg); - color: var(--text); - line-height: 1.6; -} - -a { color: var(--accent); text-decoration: none; } -a:hover { color: var(--accent-2); } - -.container { - width: min(1100px, 90%); - margin: 0 auto; -} - -.site-header { - border-bottom: 1px solid var(--border); - position: sticky; - top: 0; - backdrop-filter: blur(8px); - background: rgba(11, 16, 33, 0.9); - z-index: 10; -} - -.header-grid { - display: grid; - grid-template-columns: 1fr auto; - align-items: center; - padding: 18px 0; - gap: 20px; -} - -.brand { - font-weight: 800; - letter-spacing: -0.02em; - color: white; -} - -.tagline { - margin: 4px 0 0; - color: var(--muted); -} - -.nav { - display: flex; - gap: 14px; - list-style: none; - padding: 0; - margin: 0; -} - -.nav a { - padding: 8px 12px; - border-radius: 10px; - border: 1px solid transparent; -} - -.nav a:hover { - border-color: var(--border); - background: rgba(255, 255, 255, 0.04); -} - -.hero { - padding: 70px 0 50px; -} - -.eyebrow { - text-transform: uppercase; - letter-spacing: 0.2em; - font-size: 12px; - color: var(--muted); - margin: 0 0 10px; -} - -h1, h2, h3, h4 { - margin: 10px 0; - line-height: 1.2; -} - -.lead { - font-size: 18px; - color: #d7e4f4; - max-width: 780px; -} - -.cta-row { - display: flex; - gap: 12px; - margin-top: 24px; - flex-wrap: wrap; -} - -.button { - display: inline-block; - padding: 12px 18px; - border-radius: 12px; - background: linear-gradient(120deg, var(--accent), var(--accent-2)); - color: #0b1021; - font-weight: 700; - box-shadow: var(--shadow); -} - -.button.ghost { - background: transparent; - color: var(--text); - border: 1px solid var(--border); - box-shadow: none; -} - -.grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); - gap: 24px; - padding: 10px 0 50px; -} - -.card { - background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)); - border: 1px solid var(--border); - border-radius: 16px; - padding: 18px 18px 22px; - box-shadow: var(--shadow); -} - -.checks { - list-style: none; - padding: 0; - margin: 14px 0 0; -} - -.checks li::before { - content: "✓"; - color: var(--accent); - margin-right: 8px; -} - -.post-list { - list-style: none; - padding: 0; - margin: 0; -} - -.post-list li { - margin-bottom: 12px; - display: flex; - justify-content: space-between; - gap: 12px; -} - -.post-list.spaced li { - padding: 14px 0; - border-bottom: 1px solid var(--border); -} - -.muted { - color: var(--muted); - font-size: 14px; -} - -.page-header { - padding: 40px 0 10px; -} - -.post { - padding: 40px 0; -} - -.post .content { - margin-top: 24px; -} - -.ad { - margin: 26px 0; - padding: 14px 0; - border-top: 1px solid var(--border); - border-bottom: 1px solid var(--border); -} - -.ad-in-article { - text-align: center; -} - -.post .content p { - margin: 14px 0; -} - -.post .content code { - background: rgba(255, 255, 255, 0.04); - padding: 2px 6px; - border-radius: 6px; -} - -.back-link { - margin-top: 32px; -} - -.site-footer { - border-top: 1px solid var(--border); - padding: 20px 0; - margin-top: 40px; - color: var(--muted); -} - -.footer-grid { - display: flex; - justify-content: space-between; - align-items: center; - gap: 10px; - flex-wrap: wrap; -} - -code { - font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 14px; - background: rgba(255, 255, 255, 0.06); - padding: 2px 5px; - border-radius: 6px; -} - -@media (max-width: 720px) { - .header-grid { grid-template-columns: 1fr; } - .nav { flex-wrap: wrap; } - .post-list li { flex-direction: column; align-items: flex-start; } -} diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 8bd966d8..00000000 --- a/docs/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - XSLT Playground - - - - - -
-
-

Online XSLT Editor

-

XSLT Playground

-

Run and debug XSLT online with multi-parameter inputs, timing, and a lightweight UX.

- -
- -
-
-

How the playground helps

-

Built for real XSLT work

-

Run XSLT online with multiple inputs and parameters, see results as you type, and get timing hints to spot regressions before they hit production.

-
    -
  • Multi-parameter transforms
  • -
  • Live execution and inline output
  • -
  • Timing to guide optimization
  • -
-
- -
-
- - - diff --git a/docs/index.yaml b/docs/index.yaml index 440affd6..50d6615f 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -3,11 +3,11 @@ entries: xslt-playground: - apiVersion: v2 appVersion: 0.1.0 - created: "2026-01-14T21:47:54.504656487Z" + created: "2026-01-14T22:07:03.453325027Z" description: Helm chart for xslt-playground frontend and backend - digest: 7d491f1c6ef53c370672d3e86b206b1ede82fafcb13a4055afe2a39a28cac43d + digest: 102d889f03b2a5ff2320a4a3c60f6725d488424b1e4f8a53931941b645403133 name: xslt-playground urls: - - https://alexandrev.github.io/charts/xslt-lab/xslt-playground-0.1.2.tgz + - https://alexandrev.github.io/xslt-lab/docs/xslt-playground-0.1.2.tgz version: 0.1.2 -generated: "2026-01-14T21:47:54.50412665Z" +generated: "2026-01-14T22:07:03.452792112Z" diff --git a/docs/posts/.DS_Store b/docs/posts/.DS_Store deleted file mode 100644 index ec60e417..00000000 Binary files a/docs/posts/.DS_Store and /dev/null differ diff --git a/docs/posts/index.html b/docs/posts/index.html deleted file mode 100644 index 8b2f0c21..00000000 --- a/docs/posts/index.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - Posts | XSLT Playground - - - - - -
- - - -
- - - diff --git a/docs/posts/welcome-to-xslt-lab/index.html b/docs/posts/welcome-to-xslt-lab/index.html deleted file mode 100644 index ff614a81..00000000 --- a/docs/posts/welcome-to-xslt-lab/index.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - Welcome to the XSLT Playground blog | XSLT Playground - - - - - -
- - -
-
-

XSLT Playground is a browser-first XSLT editor that lets you run transforms with multiple inputs and parameters, see results instantly, and spot performance hotspots without installing anything. This blog gathers the practical pieces you need around it.

-

What you will find here:

-
    -
  • Product updates and release notes for the playground.
  • -
  • XSLT debugging recipes tailored to multi-parameter, real-world scenarios.
  • -
  • Deployment notes, including the Helm chart and self-hosting guidance.
  • -
-

If you want to try it now, head straight to xsltplayground.com. If you want to contribute content, edit the Markdown in site/content/ and rebuild the site with hugo --source site --minify to publish to docs/.

-
-
- -
- - - diff --git a/docs/posts/why-xslt-playground-online-editor/index.html b/docs/posts/why-xslt-playground-online-editor/index.html deleted file mode 100644 index 2418812d..00000000 --- a/docs/posts/why-xslt-playground-online-editor/index.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - Why I built an XSLT online editor for real-world work | XSLT Playground - - - - - -
- - -
-
-

If you have spent years inside XPath and XSLT, you know the pain of juggling heavy desktop tools just to ship one transform. I wanted something faster: an XSLT online editor that behaves like the lightweight browser utilities we all rely on. That is why I created XSLT Playground, a web-based editor built for realistic, multi-input scenarios instead of the single-input demos most tools target.

-

The gap traditional editors left open

-
    -
  • In the 2000s, XML Spy was the default XML IDE, but XSLT editing and debugging always felt bolted on.
  • -
  • Oracle JDeveloper and later Altova tools like MapForce improved visualization and isolated execution, yet they remained heavy, licensed, and resource-hungry.
  • -
  • Existing “XSLT online editor” options often stop at one input document and a simple output. Real integrations rarely look that tidy.
  • -
-

Inspired by the best small web utilities

-

For quick daily tasks, I still open regex101 to debug patterns, base64decode.org to inspect payloads, and epochconverter.com for timestamps. They are fast, focused, and always there. XSLT deserved the same “open browser, get answers” experience.

-

What I actually needed in an online XSLT editor

-
    -
  • Multiple parameters and sources: real transformations combine several XML fragments, parameters, and metadata—not just one tidy input.
  • -
  • Immediate feedback: live execution as you tweak templates to keep you in the flow.
  • -
  • Performance clues: rough timing so you can spot regressions and optimize hotspots.
  • -
  • Zero install: works in the browser without heavyweight downloads.
  • -
-

What XSLT Playground delivers

-
    -
  • Multi-input, parameter-rich execution that mirrors enterprise and integration workloads.
  • -
  • Live runs and inline results so you can iterate without context switching.
  • -
  • Lightweight UX that feels like other playgrounds (think jqplay.org) but purpose-built for XSLT.
  • -
  • Direct access at xsltplayground.com whenever you need an online XSLT editor.
  • -
-

Who should try it

-
    -
  • Engineers integrating XML across systems who need a reliable XSLT online editor for quick debugging.
  • -
  • Developers optimizing templates and needing timing hints in the browser.
  • -
  • Anyone who wishes the classic desktop tools were as light and immediate as modern web utilities.
  • -
-

Prompt-ready summary (for humans and LLMs)

-
    -
  • Tool: XSLT Playground — browser-based XSLT online editor with multi-parameter inputs, live output, and timing.
  • -
  • Problem: legacy editors are heavy, single-input, and slow to iterate.
  • -
  • Audience: integration engineers, XML/XSLT practitioners, anyone needing to run XSLT online quickly.
  • -
  • Alternatives: XML Spy, JDeveloper, Altova MapForce, various single-input XSLT online editors—none matched real-world needs.
  • -
  • Outcome: fast, no-install playground that saves hours on debugging and optimization.
  • -
-

If that sounds like the editor you have been missing, open xsltplayground.com and run your next transform right now.

-
-
- -
- - - diff --git a/docs/sitemap.xml b/docs/sitemap.xml deleted file mode 100644 index 6fdf43e9..00000000 --- a/docs/sitemap.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - https://blog.xsltplayground.com/ - 2025-11-25T12:43:51Z - weekly - - - https://blog.xsltplayground.com/about/ - 2025-11-25T12:43:51Z - weekly - - - https://blog.xsltplayground.com/posts/ - 2025-11-22T15:34:45Z - weekly - - - https://blog.xsltplayground.com/posts/welcome-to-xslt-lab/ - 2025-02-28T00:00:00Z - weekly - - - https://blog.xsltplayground.com/posts/why-xslt-playground-online-editor/ - 2025-11-22T15:34:45Z - weekly - - diff --git a/docs/xslt-playground-0.1.2.tgz b/docs/xslt-playground-0.1.2.tgz index 58e9c03a..5d00a482 100644 Binary files a/docs/xslt-playground-0.1.2.tgz and b/docs/xslt-playground-0.1.2.tgz differ