Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b0053e0
new website structure
fonsp May 13, 2022
ab4d4b1
new frontmatter system
fonsp May 18, 2022
09d0b13
tweaks
fonsp May 18, 2022
0db8e09
minor cleanup
fonsp May 18, 2022
5da1787
css tweaks
fonsp May 19, 2022
0df9869
Update Manifest.toml
fonsp May 19, 2022
4b0ce1a
generate frontmatter for all notebooks
fonsp May 19, 2022
a568944
update Pluto
fonsp May 19, 2022
c959058
⚡️ progress logging, async parallel runners
fonsp May 19, 2022
d5d6dbf
Awesome new development app
fonsp May 19, 2022
e3ce590
sidebar in index page
fonsp May 19, 2022
e3bfad2
more frontmatter updates
fonsp May 19, 2022
c001f99
VS Code Task files
fonsp May 19, 2022
2b69128
GitHub Pages workflow
fonsp May 19, 2022
96d0dea
eyyy
fonsp May 19, 2022
527ebe1
update GHA cache
fonsp May 19, 2022
742b395
update some styles
fonsp May 19, 2022
276a331
update page generation versions
fonsp Sep 23, 2022
94cf825
tweaks
fonsp Sep 23, 2022
7206d5a
remove old tools
fonsp Sep 23, 2022
32e0832
Create update_notebook_packages.jl
fonsp Sep 23, 2022
053bc8a
update package versions in all notebooks
fonsp Sep 23, 2022
1af039f
tweaks
fonsp Sep 23, 2022
d293a12
faster youtube embed in lectures
fonsp Sep 27, 2022
aafc00d
move all notebooks to new place
fonsp Nov 1, 2022
51cd266
Update sidebar data.jl
fonsp Nov 1, 2022
f5cb963
Update Manifest.toml
fonsp Nov 1, 2022
e0e3a08
Update PlutoDeployment.toml
fonsp Nov 1, 2022
379f712
delete old website source
fonsp Nov 1, 2022
2817834
Delete book_model.jl
fonsp Nov 1, 2022
503ac84
Allow specifying update level in tools/update_notebook_pacakges.jl
fonsp Nov 1, 2022
0fa05be
update notebook package versions
fonsp Nov 1, 2022
7d75b4d
Update installation.md
fonsp Nov 1, 2022
ccf164a
fix broken images
fonsp Nov 1, 2022
1d95733
misc
fonsp Nov 1, 2022
5ee65f5
Update layout.css
fonsp Nov 1, 2022
9859769
include homeworks in sidebar
fonsp Nov 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
VS Code Task files
  • Loading branch information
fonsp committed May 19, 2022
commit c001f99b6b363ed56ad3a51988748479add87b88
13 changes: 13 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"julialang.language-julia",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [

]
}
13 changes: 13 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "PlutoPages: run development server",
"type": "shell",
"command": "julia develop.jl",
"group": "build"
}
]
}
5 changes: 1 addition & 4 deletions PlutoPages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -458,10 +458,7 @@ md"""
const output_dir = mkpath(joinpath(@__DIR__, "_site"))

# ╔═╡ 37b2cecc-e4c7-4b80-b7d9-71c68f3c0339
try
run(`open $(output_dir)`)
catch
end


# ╔═╡ 7a95681a-df77-408f-919a-2bee5afd7777
"""
Expand Down
7 changes: 5 additions & 2 deletions develop.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,15 @@ pluto_server_url = "http://localhost:$(pluto_port)/edit?id=$(notebook.notebook_i

@info """

✅✅✅

Ready! To see the website, visit:
$(dev_server_url)
➡️ $(dev_server_url)

To inspect the generation process, go to:
$(pluto_server_url)
➡️ $(pluto_server_url)

✅✅✅

"""

Expand Down