#!/bin/bash

set -ex

FILES="docs/demo_*.md"
for f in $FILES
do
  jupytext $f --to ipynb
done
