From 9775b4ab5ca5137e93867f3f7f4aa5b3247a8f2e Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:31:32 -0300 Subject: [PATCH] Update saving and loading.jl --- src/notebook/saving and loading.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notebook/saving and loading.jl b/src/notebook/saving and loading.jl index 6eb1361ec..7a4d55e84 100644 --- a/src/notebook/saving and loading.jl +++ b/src/notebook/saving and loading.jl @@ -50,10 +50,10 @@ function save_notebook(io::IO, notebook::Notebook) # Super Advanced Code Analysis™ to add the @bind macro to the saved file if it's used somewhere. if any(!must_be_commented_in_file(c) && occursin("@bind", c.code) for c in notebook.cells) println(io, "") - println(io, "#! format: off") + println(io, "#! format: off") # Turn off formatting. See https://domluna.github.io/JuliaFormatter.jl/stable/#Turn-off/on-formatting println(io, "# This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error).") println(io, PlutoRunner.fake_bind) - println(io, "#! format: on") + println(io, "#! format: on") # Turn formatting back on. end println(io)