Platform
Solutions
Resources
Pricing
Sign in
Sign up
Fabian Iwand
Web developer and autodidact with an interest in creative coding.
Workspace
Fork
Published
Hello, ... !
By
Fabian Iwand
Edited
Jun 9, 2019
4 stars
Hello, ... !
Hello, straight-skeleton!
Hello, jq!
Hello, randexp.js!
Hello, SolidJS!
Hello, Ruffle!
Hello, OpenCV.js!
Hello, typo-js!
Hello, PDF.js
Hello, CodeMirror 5!
Hello, handlebars.js!
Hello, BabylonJS!
Hello, Blockly!
Insert cell
Insert cell
Insert cell
Handlebars
=
{
const
hb
=
await
require
(
'handlebars@4.1.2/dist/handlebars.min.js'
)
;
// Register a helper.
// n is the argument, block the inner content.
hb
.
registerHelper
(
'times'
,
(
n
,
block
)
=>
{
let
s
=
''
,
i
=
n
;
while
(
i
--
>
0
)
s
+=
block
.
fn
(
i
)
;
return
s
;
}
)
;
return
hb
;
}
Insert cell
Insert cell
table_hbs
=
Handlebars
.
compile
(
`
<table>
{{#if headers}}
<thead>
<tr>{{#each headers}}<th>{{@this}}</th>{{/each}}</tr>
</thead>
{{/if}}
<tbody>
{{#each rows}}
<tr>{{#each @this}}<td>{{{@this}}}</td>{{/each}}</tr>
{{/each}}
</tbody>
</table>
`
)
Insert cell
Insert cell
choochoo_hbs
=
Handlebars
.
compile
(
`
🚂{{#times size}}🚃{{/times}}{{#if late ~}}
{{#times late ~}} {{/times}}🏃
{{/if}}
`
)
Insert cell
Insert cell
md
`
### Departures
${
table_hbs
(
{
headers
:
[
'Train'
,
'Status'
]
,
rows
:
[
[
'Train 1'
,
choochoo_hbs
(
{
size
:
5
}
)
]
,
[
'<span style=color:red>Train 2</span>'
,
choochoo_hbs
(
{
size
:
3
,
late
:
55
}
)
]
,
[
'Train 3'
,
choochoo_hbs
(
{
size
:
8
}
)
]
,
]
}
)
}
`
Insert cell
One platform
to build and deploy the best data apps
Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Try it for free
Learn more
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Handlebars
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
table_hbs
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
choochoo_hbs
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML