From 874b758e82c5f4fc0ad45d71b94d1d4f5d197952 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Tue, 19 Oct 2021 01:43:35 +0200 Subject: [PATCH] fixes --- src/Literate.jl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Literate.jl b/src/Literate.jl index ae50f8e..aa728fc 100644 --- a/src/Literate.jl +++ b/src/Literate.jl @@ -610,7 +610,7 @@ Generate a notebook from `inputfile` and write the result to `outputdir`. See the manual section on [Configuration](@ref) for documentation of possible configuration with `config` and other keyword arguments. """ -function notebook(inputfile, outputdir=pwd(); config::Dict=Dict(), flavor=JupyterFlavor(), kwargs...) +function notebook(inputfile, outputdir=pwd(); config::Dict=Dict(), kwargs...) # preprocessing and parsing chunks, config = preprocessor(inputfile, outputdir; user_config=config, user_kwargs=kwargs, type=:nb) @@ -754,9 +754,10 @@ function create_notebook(::PlutoFlavor, chunks, config) # Print header write(ionb, """ ### A Pluto.jl notebook ### - # v0.11.0 + # v0.16.0 using Markdown + using InteractiveUtils """)