use quarto, not Pluto to render pages
This commit is contained in:
35
quarto/integral_vector_calculus/process.jl
Normal file
35
quarto/integral_vector_calculus/process.jl
Normal file
@@ -0,0 +1,35 @@
|
||||
using WeavePynb
|
||||
using Mustache
|
||||
|
||||
mmd(fname) = mmd_to_html(fname, BRAND_HREF="../toc.html", BRAND_NAME="Calculus with Julia")
|
||||
## uncomment to generate just .md files
|
||||
#mmd(fname) = mmd_to_md(fname, BRAND_HREF="../toc.html", BRAND_NAME="Calculus with Julia")
|
||||
|
||||
|
||||
|
||||
|
||||
fnames = [
|
||||
"double_triple_integrals",
|
||||
"line_integrals",
|
||||
"div_grad_curl",
|
||||
"stokes_theorem",
|
||||
"review"
|
||||
]
|
||||
|
||||
function process_file(nm, twice=false)
|
||||
include("$nm.jl")
|
||||
mmd_to_md("$nm.mmd")
|
||||
markdownToHTML("$nm.md")
|
||||
twice && markdownToHTML("$nm.md")
|
||||
end
|
||||
|
||||
process_files(twice=false) = [process_file(nm, twice) for nm in fnames]
|
||||
|
||||
|
||||
|
||||
|
||||
"""
|
||||
## TODO integral_vector_calculus
|
||||
* line integrals needs an image (lasso?)
|
||||
* more questions
|
||||
"""
|
||||
Reference in New Issue
Block a user