presi-slides 1.0.9 → 1.0.10
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/includes/slides.css
CHANGED
|
@@ -799,6 +799,7 @@ slide-view:not(:has(h1[layout])) {
|
|
|
799
799
|
--slide-header-template: "h h h h i i i i i i i i";
|
|
800
800
|
--slide-body-template: "h h h h i i i i i i i i"
|
|
801
801
|
"b b b b b b b b b b b b";
|
|
802
|
+
--grid-content-rows: minmax(min-content,40%) minmax(60%, 1fr);
|
|
802
803
|
}
|
|
803
804
|
|
|
804
805
|
&:has(p:where(:first-child, :is(h1, header):first-of-type + *) + pre) {
|
package/package.json
CHANGED
package/public/slides.css
CHANGED
|
@@ -129,7 +129,8 @@ blockquote {
|
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
p.center,
|
|
132
|
-
td.center
|
|
132
|
+
td.center,
|
|
133
|
+
code.center {
|
|
133
134
|
text-align: center;
|
|
134
135
|
}
|
|
135
136
|
|
|
@@ -799,6 +800,7 @@ slide-view:not(:has(h1[layout])) {
|
|
|
799
800
|
--slide-header-template: "h h h h i i i i i i i i";
|
|
800
801
|
--slide-body-template: "h h h h i i i i i i i i"
|
|
801
802
|
"b b b b b b b b b b b b";
|
|
803
|
+
--grid-content-rows: minmax(min-content,40%) minmax(60%, 1fr);
|
|
802
804
|
}
|
|
803
805
|
|
|
804
806
|
&:has(p:where(:first-child, :is(h1, header):first-of-type + *) + pre) {
|
|
Binary file
|
|
@@ -65,6 +65,21 @@ title: Sample Presi
|
|
|
65
65
|
|
|
66
66
|
 {.full}
|
|
67
67
|
|
|
68
|
+
---
|
|
69
|
+
# Slide 6
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
{.full}
|
|
73
|
+
|
|
74
|
+
<!-- symmetry between Request and Response -->
|
|
75
|
+
|
|
76
|
+
| | Request | Response |
|
|
77
|
+
| --- | --- | --- |
|
|
78
|
+
| Start | `GET /en-US/docs/… HTTP/1.1` | `HTTP/1.1 404 Not Found` |
|
|
79
|
+
| Headers | `User-Agent: Mozilla/5.0…` | `Content-Type: application/json` |
|
|
80
|
+
| Body | `<!DOCTYPE html> <html lang="en"> … </html>` | `{"squadName": "SuperHeroSquad", …}` |
|
|
81
|
+
|
|
82
|
+
|
|
68
83
|
|
|
69
84
|
---
|
|
70
85
|
tags: #slides
|