JuliaPluto / static-export-template

A template to automatically convert Pluto notebooks to an HTML website with GitHub Pages. Demo page:

Home Page:https://juliapluto.github.io/static-export-template/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

more flexibility?

SimonEnsemble opened this issue · comments

thx a ton (using for my class)!
would be cool to be able to:

  • organize the notebooks e.g. into # homework, # lectures, # in-class activities sections
  • have a list of ignored notebooks that don't build (tried to mimic MIT site and failed here)
  • be able to customize the index.html but not have it over-written each time I push a new notebook

About 2: this is already a feature of PlutoSliderServer, your attempt didn't work because this line:

SimonEnsemble/CHE-599-intro-to-data-science-Fall-2021@39cafa9#diff-48fcdbcf3daed39707fb9303956fadcb00bf92c3c24e569291cc777977aaf8c8R35

creates and activates a new temporary environment, which does not contain your PlutoDeployment.toml file. It also excludes the file from the slider server (which you are not using), instead of the export.

You can configure PlutoSliderServer either using a toml file, or using keyword arguments. You can add a line here with

Export_exclude = ["lectures/skeletons/intro_to_julia.jl"]

About 1 and 3: can you please make separate issues about this? Explain 3 in more detail