You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will require a modification in make_examples.jl:
using Literate
using Glob
cd("examples")
#files = glob("Example*jl")
files =glob(*.jl)
for f in files
println("MD for $(f)")
Literate.markdown(
f ;
flavor = Literate.CommonMarkFlavor(),
codefence ="```julia"=>"```",
)
println("NB for $(f)")
Literate.notebook(f ; execute =false)
end
The text was updated successfully, but these errors were encountered:
Problem
The example names are not very transparent.
Solution
Give them descriptive names, such as:
Example1.jl -> 01-Logistic.jl
Notes
This will require a modification in
make_examples.jl
:The text was updated successfully, but these errors were encountered: