@ox-content/vite-plugin 3.0.0-alpha.1 → 3.0.0-alpha.11
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/dist/index.cjs +17738 -6540
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2863 -168
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2863 -168
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +17717 -6540
- package/dist/index.mjs.map +1 -1
- package/dist/styles/all.css +12 -0
- package/dist/styles/citations.css +62 -0
- package/dist/styles/core.css +2209 -0
- package/dist/styles/github.css +262 -0
- package/dist/styles/graphviz.css +34 -0
- package/dist/styles/magic-links.css +33 -0
- package/dist/styles/mermaid.css +151 -0
- package/dist/styles/not-by-ai.css +43 -0
- package/dist/styles/ogp.css +163 -0
- package/dist/styles/social.css +625 -0
- package/dist/styles/tabs.css +210 -0
- package/dist/styles/twitter-full.css +453 -0
- package/dist/styles/youtube.css +87 -0
- package/dist/vitepress.cjs +617 -10
- package/dist/vitepress.cjs.map +1 -1
- package/dist/vitepress.mjs +591 -10
- package/dist/vitepress.mjs.map +1 -1
- package/package.json +31 -4
- package/dist/interop.cjs +0 -31
- package/dist/interop.cjs.map +0 -1
- package/dist/interop.mjs +0 -26
- package/dist/interop.mjs.map +0 -1
- package/dist/tabs.cjs +0 -98
- package/dist/tabs.cjs.map +0 -1
- package/dist/tabs.mjs +0 -99
- package/dist/tabs.mjs.map +0 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@import "./core.css";
|
|
2
|
+
@import "./magic-links.css";
|
|
3
|
+
@import "./social.css";
|
|
4
|
+
@import "./twitter-full.css";
|
|
5
|
+
@import "./ogp.css";
|
|
6
|
+
@import "./github.css";
|
|
7
|
+
@import "./youtube.css";
|
|
8
|
+
@import "./tabs.css";
|
|
9
|
+
@import "./mermaid.css";
|
|
10
|
+
@import "./graphviz.css";
|
|
11
|
+
@import "./citations.css";
|
|
12
|
+
@import "./not-by-ai.css";
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
.content .ox-cite {
|
|
2
|
+
white-space: nowrap;
|
|
3
|
+
font-size: 0.95em;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.content .ox-cite__ref {
|
|
7
|
+
font-variant-numeric: tabular-nums;
|
|
8
|
+
text-decoration-thickness: 0.08em;
|
|
9
|
+
text-underline-offset: 0.2em;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.content .ox-cite__ref:focus-visible,
|
|
13
|
+
.content .ox-bibliography__item:focus-within {
|
|
14
|
+
outline: var(--octc-focus-ring);
|
|
15
|
+
outline-offset: var(--octc-focus-offset);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.content .ox-cite__ref:target,
|
|
19
|
+
.content .ox-bibliography__item:target {
|
|
20
|
+
background: var(--octc-color-code-line-focus);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.content .ox-bibliography {
|
|
24
|
+
margin-top: 2rem;
|
|
25
|
+
padding-top: 1rem;
|
|
26
|
+
border-top: 1px solid var(--octc-color-border);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.content .ox-bibliography__title {
|
|
30
|
+
margin-top: 0;
|
|
31
|
+
font-size: 1.25rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.content .ox-bibliography__list {
|
|
35
|
+
margin-block: 0;
|
|
36
|
+
padding-inline-start: 1.5rem;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.content .ox-bibliography__item {
|
|
40
|
+
padding-inline-start: 0.25rem;
|
|
41
|
+
color: var(--octc-color-text-muted);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.content .ox-bibliography__item + .ox-bibliography__item {
|
|
45
|
+
margin-top: 0.65rem;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.content .ox-bibliography__item cite {
|
|
49
|
+
color: var(--octc-color-text);
|
|
50
|
+
font-style: italic;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.content .ox-bibliography__url,
|
|
54
|
+
.content .ox-bibliography__doi {
|
|
55
|
+
overflow-wrap: anywhere;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@media print {
|
|
59
|
+
.content .ox-cite__ref {
|
|
60
|
+
text-decoration: none;
|
|
61
|
+
}
|
|
62
|
+
}
|