diff --git a/SUPPORTED_LANGUAGES.md b/SUPPORTED_LANGUAGES.md index 10bedde..fcf5b61 100644 --- a/SUPPORTED_LANGUAGES.md +++ b/SUPPORTED_LANGUAGES.md @@ -1,6 +1,6 @@ # Supported Languages -> 192 languages exported from highlight.js@11.10.0 +> 192 languages exported from highlight.js@11.11.0 ## 1c (`_1c`) diff --git a/SUPPORTED_STYLES.md b/SUPPORTED_STYLES.md index 9d6b296..93566f5 100644 --- a/SUPPORTED_STYLES.md +++ b/SUPPORTED_STYLES.md @@ -1,6 +1,6 @@ # Supported Styles -> 249 styles exported from highlight.js@11.10.0 +> 256 styles exported from highlight.js@11.11.0 ## 1c-light (`_1cLight`) @@ -1520,6 +1520,94 @@ ``` +## cybertopia-cherry (`cybertopiaCherry`) + +**Injected Styles** + +```html + + + + {@html cybertopiaCherry} + +``` + +**CSS StyleSheet** + +```html + +``` + +## cybertopia-dimmer (`cybertopiaDimmer`) + +**Injected Styles** + +```html + + + + {@html cybertopiaDimmer} + +``` + +**CSS StyleSheet** + +```html + +``` + +## cybertopia-icecap (`cybertopiaIcecap`) + +**Injected Styles** + +```html + + + + {@html cybertopiaIcecap} + +``` + +**CSS StyleSheet** + +```html + +``` + +## cybertopia-saturated (`cybertopiaSaturated`) + +**Injected Styles** + +```html + + + + {@html cybertopiaSaturated} + +``` + +**CSS StyleSheet** + +```html + +``` + ## danqing (`danqing`) **Injected Styles** @@ -4358,6 +4446,72 @@ ``` +## rose-pine (`rosePine`) + +**Injected Styles** + +```html + + + + {@html rosePine} + +``` + +**CSS StyleSheet** + +```html + +``` + +## rose-pine-dawn (`rosePineDawn`) + +**Injected Styles** + +```html + + + + {@html rosePineDawn} + +``` + +**CSS StyleSheet** + +```html + +``` + +## rose-pine-moon (`rosePineMoon`) + +**Injected Styles** + +```html + + + + {@html rosePineMoon} + +``` + +**CSS StyleSheet** + +```html + +``` + ## routeros (`routeros`) **Injected Styles** diff --git a/bun.lockb b/bun.lockb index 6e55515..c5445ad 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index dca33a3..5976a2f 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "playwright": "playwright" }, "dependencies": { - "highlight.js": "11.10.0" + "highlight.js": "11.11.0" }, "devDependencies": { "@astrojs/svelte": "latest", diff --git a/tests/__snapshots__/styles.test.ts.snap b/tests/__snapshots__/styles.test.ts.snap index a6bde4a..6c6151f 100644 --- a/tests/__snapshots__/styles.test.ts.snap +++ b/tests/__snapshots__/styles.test.ts.snap @@ -72,6 +72,10 @@ exports[`Styles 1`] = ` "colors", "cupcake", "cupertino", + "cybertopiaCherry", + "cybertopiaDimmer", + "cybertopiaIcecap", + "cybertopiaSaturated", "danqing", "darcula", "dark", @@ -200,6 +204,9 @@ exports[`Styles 1`] = ` "rosPine", "rosPineDawn", "rosPineMoon", + "rosePine", + "rosePineDawn", + "rosePineMoon", "routeros", "sagelight", "sandcastle", diff --git a/tests/styles.test.ts b/tests/styles.test.ts index 800f65c..1511d9a 100644 --- a/tests/styles.test.ts +++ b/tests/styles.test.ts @@ -5,6 +5,6 @@ test("Styles", () => { // @ts-expect-error expect(styles.default).toBeUndefined(); - expect(styleNames.length).toEqual(249); + expect(styleNames.length).toEqual(256); expect(styleNames).toMatchSnapshot(); });