I am converting a set of Jupyter notebooks running a Julia kernel (1.10) that generate graphic images with the CairoMakie backend. Image files (.png) are created under the directory <notebookname>_files
however the resulting .md
file is not referencing them, instead, they are embedding the images with <img width=1280 height=720 style='object-fit: contain;' src="data:image/png;base64, iVBORw0KGgoAAA...<very long>...="/>
The command I use to convert is
% jupyter nbconvert --version
7.14.1
% jupyter nbconvert --execute --to=markdown --output-dir=$output_dir $notebook
Does anybody know how to avoid the embedding? I understand that the default is not embedding.