-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instructions on how to use LiveServer to preview docs locally
- Loading branch information
Showing
3 changed files
with
21 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
using PlutoStaticHTML | ||
|
||
""" | ||
Builds the Pluto notebooks in the specified directory. | ||
As part of the build, all notebooks are executed to make sure there is no | ||
deprecated code. | ||
""" | ||
function build(tutorials_dir) | ||
@info "Building notebooks in $tutorials_dir" | ||
use_distributed = false | ||
output_format = documenter_output | ||
bopts = BuildOptions(tutorials_dir; use_distributed, output_format) | ||
build_notebooks(bopts) | ||
end | ||
@info "Building notebooks in $tutorials_dir" | ||
use_distributed = false | ||
output_format = documenter_output | ||
bopts = BuildOptions(tutorials_dir; use_distributed, output_format) | ||
build_notebooks(bopts) | ||
end |