Skip to content

Commit cdedeac

Browse files
committed
visual improvements
1 parent 8d70e26 commit cdedeac

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

slides/slides.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ But, for `no-unsafe-eval`, we would ask to expose first-class `import` on all gl
267267
```js
268268
globalThis.import(source);
269269
// to be equivalent to
270-
globalThis.eval('s => import(s)')(source);
270+
globalThis.eval("s => import(s)")(source);
271271
```
272272

273273
---
@@ -276,7 +276,6 @@ globalThis.eval('s => import(s)')(source);
276276

277277
---
278278

279-
280279
#### Import hook in Global
281280

282281
```js
@@ -337,5 +336,29 @@ const source = new ModuleSource(
337336
},
338337
}
339338
);
340-
await newGlobal.eval('s => import(s)')(source);
339+
await newGlobal.eval("s => import(s)")(source);
341340
```
341+
342+
<!-- visual customizations -->
343+
344+
<style>
345+
/* justify, unless it's just one line (first===last) */
346+
p {
347+
text-align: justify;
348+
text-align-last: center;
349+
}
350+
blockquote {
351+
border-left: 4px solid #888;
352+
padding-left: 1em;
353+
quotes: none;
354+
text-align: justify;
355+
}
356+
blockquote * {
357+
text-align: justify;
358+
text-align-last: left;
359+
}
360+
blockquote::before,
361+
blockquote::after {
362+
content: none;
363+
}
364+
</style>

slides/slides.pdf

94.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)