@compiiile/compiiile 2.4.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.compiiile/src/components/ContentWrapper.vue +12 -2
- package/.compiiile/src/components/SlidesContent.vue +12 -12
- package/.compiiile/src/components/layout/ThemeSwitcher.vue +95 -0
- package/.compiiile/src/components/layout/TopBar.vue +4 -2
- package/.compiiile/src/components/searchBar/SearchBar.vue +4 -3
- package/.compiiile/src/components/searchBar/SearchResult.vue +1 -1
- package/.compiiile/src/layouts/BaseLayout.astro +4 -0
- package/.compiiile/src/layouts/ThemeLoader.astro +26 -0
- package/.compiiile/src/style/code-theme.scss +16 -6
- package/.compiiile/src/style/print.scss +0 -1
- package/.compiiile/src/style/slides.scss +64 -16
- package/.compiiile/src/style/variables.scss +27 -21
- package/CONTRIBUTING.md +0 -3
- package/README.md +60 -34
- package/bin/config.js +2 -0
- package/bin/vitePluginCompiiile/models/Context.js +2 -2
- package/dist/style.css +1 -1
- package/markdown-preview.md +3 -0
- package/package.json +1 -1
package/markdown-preview.md
CHANGED
|
@@ -129,10 +129,13 @@ You can specify the title, alt text, and size of any image:
|
|
|
129
129
|
|
|
130
130
|
```md
|
|
131
131
|

|
|
132
|
+

|
|
132
133
|
```
|
|
133
134
|
|
|
134
135
|

|
|
135
136
|
|
|
137
|
+

|
|
138
|
+
|
|
136
139
|
## Code and syntax highlight
|
|
137
140
|
|
|
138
141
|
````
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compiiile/compiiile",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.5.0",
|
|
5
5
|
"description": "The most convenient way to render a folder containing markdown files. Previewing and searching markdown files has never been that easy.",
|
|
6
6
|
"author": "AlbanCrepel <alban.crepel@gmail.com>",
|
|
7
7
|
"license": "GPL-3.0-only",
|