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)