Created VSCode Extension, some updates from LinkedLives in the field

This commit is contained in:
metacryst
2023-07-21 16:07:37 -05:00
parent c511fda61a
commit 4184819a9a
30 changed files with 3955 additions and 6 deletions

34
VSCode/tests/test.svelte Normal file
View File

@@ -0,0 +1,34 @@
<script>
let tests = [
/*html*/`<div>OK</div>`,
/* INLINE-HTML */ `<div>Test</div>$`,
/*css*/`
.className {
color: red;
}
`,
// html
`
<div>Test</div>
`,
/* html */
`
<div>Test</div>
`,
/*sql*/
`
SELECT * FROM test
WHERE ProductName NOT BETWEEN 'Carnarvon Tigers' AND 'Mozzarella di Giovanni'
ORDER BY ProductName;
`,
/*XML*/
`
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.example.com/</loc>
</url>
</urlset>
`
]
</script>