Commit 496405c

Anton Medvedev <antonmedv@google.com>
2021-05-19 22:11:26
Update index.md
1 parent 7bc83c2
Changed files (1)
examples
examples/index.md
@@ -10,8 +10,12 @@ await $`ls -la ${__dirname}`
 
 The `__filename` will be pointed to **index.md**:
 
-    console.log(chalk.yellowBright(__filename))
+```js
+console.log(chalk.yellowBright(__filename))
+```
 
 We can use imports here as well:
 
-    await import('./basics.mjs')
+```js
+await import('./basics.mjs')
+```