1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-18 19:43:16 +00:00
Files
xslt-lab/frontend/index.html
T

42 lines
1.7 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>XSLT Playground - Online XSLT Editor & Tester</title>
<meta
name="description"
content="Free online XSLT editor, tester and optimizer. Experiment with XML transformations in our interactive XSLT playground and optimize your stylesheets."
/>
<meta
name="keywords"
content="xslt, xslt editor, xsl editor, xsl tester, xslt tester, xsl playground, xslt playground, xslt optimizer, xslt tool, xml transformation"
/>
<meta property="og:title" content="XSLT Playground - Online XSLT Editor & Tester" />
<meta
property="og:description"
content="Free online XSLT editor, tester and optimizer. Experiment with XML transformations in our interactive XSLT playground and optimize your stylesheets."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://xsltplayground.com/" />
<meta property="og:image" content="/logo.svg" />
<link rel="canonical" href="https://xsltplayground.com/" />
<script type="module" src="/env.js"></script>
<script>
if (window.env && window.env.VITE_ADSENSE_CLIENT) {
const s = document.createElement('script');
s.async = true;
s.src =
'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=' +
window.env.VITE_ADSENSE_CLIENT;
s.crossOrigin = 'anonymous';
document.head.appendChild(s);
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>