Published
Edited
Feb 21, 2022
4 stars
Insert cell
Insert cell
Insert cell
options = ({
lstripBlocks: true, // automatically remove leading whitespace from a block/tag
trimBlocks: true, // automatically remove trailing newlines from a block/tag
configure: (env) => {
// Hook to perform additional configuration of the Environemnt (e.g. addFilters, addExtension)
}
})
Insert cell
import {
nunjucks,
tex,
md,
htl
} with { options } from "@tomlarkworthy/nunjucks-min"
Insert cell
Insert cell
nunjucks.renderString("Hello {{ username }}", { username: "James" })
Insert cell
template = nunjucks.compile("Hello {{ username }}")
Insert cell
template.render({ username: "James" })
Insert cell
Insert cell
Hello {{ username }}
Insert cell
Insert cell
helloExampleTemplate.render({ username: "James" })
Insert cell
Insert cell
{% macro callout(content) %}
<div style="border-radius: 10px;background-color: yellow;border: solid;padding:10px;padding-left: 50px; display: flex">
<span>💡<span>
<span>{{caller()}}</span>
</div>
{% endmacro %}

{% macro user(name) %}
<a href="https://observablehq.com/@{{name}}" target="_blank">@{{name}}</a>
{% endmacro %}
Insert cell
Insert cell
{# Comments in HTML #}
{% from ${definitions_njk} import callout %}

{% call callout() %}
Callout are useful for creating <b>readable</b> documentation. It's easy to encapsulate features like this into <i>macros</i>
{% endcall %}
Insert cell
Insert cell
{# Normally macros are imported from other templates #}
{% from ${definitions_njk} import user %}
This notebook was written by {{ user('tomlarkworthy') }}
Insert cell
Insert cell
Insert cell
Hello {{ ${username}}}
Insert cell
templateVariables.render() // Look no variable here
Insert cell
Insert cell
{# This is how you comment #}
Only this renders
Insert cell
Insert cell
<!DOCTYPE html>
<html>
<head>
{% block header %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
{# DOES NOT WORK #}
<p> Tag expressions don't work in extends/imports: {{ ${new Date().toString()} }} </p>
{# the following will work if you set the data variable #}
<p> You need to set the variables manually in the child: {{ date }} </p>
</html>
Insert cell
Insert cell
Insert cell
{% set date = ${'🤘'} %}

{% extends ${base_njk} %}
{% block header %}
<h3>{{ ${title} }}</h3>
{% endblock %}
{% block content %}
<ul>
{% for name, item in ${items} %}
<li>{{ name }}: {{ item }}</li>
{% endfor %}
</ul>
{% endblock %}
Insert cell
Insert cell
{% macro user(name) %}
<a href="https://observablehq.com/@{{name}}">@{{name}}</a>
{% endmacro %}
Insert cell
Insert cell
{% from ${observable_njk} import user %}
Hi {{ user('tomlarkworthy') }}
Insert cell
Insert cell
Insert cell
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.
Learn more