@farberg/reveal-template 1.1.37 → 1.1.38
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/css/dhbw.css +8 -6
- package/docs/00 - Introduction.md +11 -0
- package/package.json +1 -1
package/css/dhbw.css
CHANGED
|
@@ -283,7 +283,7 @@ body {
|
|
|
283
283
|
border-collapse: collapse;
|
|
284
284
|
border-spacing: 0;
|
|
285
285
|
font-size: 70%;
|
|
286
|
-
|
|
286
|
+
border: 1px solid #d0d0d0;
|
|
287
287
|
}
|
|
288
288
|
|
|
289
289
|
.reveal table th {
|
|
@@ -293,7 +293,13 @@ body {
|
|
|
293
293
|
.reveal table th, .reveal table td {
|
|
294
294
|
text-align: left;
|
|
295
295
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
|
296
|
-
border
|
|
296
|
+
border: 1px solid #d0d0d0;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
/* Zebra striping: alternating white / very light grey rows.
|
|
300
|
+
The toc_table has its own border/background rules, so exclude it. */
|
|
301
|
+
.reveal table:not(.toc_table) tbody tr:nth-child(even) {
|
|
302
|
+
background-color: #fbfbfb;
|
|
297
303
|
}
|
|
298
304
|
|
|
299
305
|
.reveal table th[align="center"], .reveal table td[align="center"] {
|
|
@@ -304,10 +310,6 @@ body {
|
|
|
304
310
|
text-align: right;
|
|
305
311
|
}
|
|
306
312
|
|
|
307
|
-
.reveal table tr:last-child td {
|
|
308
|
-
border-bottom: none;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
313
|
.reveal sup {
|
|
312
314
|
vertical-align: super;
|
|
313
315
|
}
|
|
@@ -37,6 +37,17 @@ test-code.c
|
|
|
37
37
|
test-code.c
|
|
38
38
|
</pre>
|
|
39
39
|
|
|
40
|
+
---
|
|
41
|
+
# Table
|
|
42
|
+
|
|
43
|
+
| Name | Description |
|
|
44
|
+
| ------------ | ----------------------------------------------------------------------- |
|
|
45
|
+
| File sink | Stores the output to a directory |
|
|
46
|
+
| Kafka sink | Stores the output to one or more topics in Kafka |
|
|
47
|
+
| Foreach sink | Runs arbitrary computation on each record |
|
|
48
|
+
| Console sink | Prints to stdout (debug only, collects data in driver program) |
|
|
49
|
+
| Memory sink | Stored as in-memory table (debug only, collects data in driver program) |
|
|
50
|
+
|
|
40
51
|
---
|
|
41
52
|
## Mermaid Example
|
|
42
53
|
|