In [1]:
@doc filter
Out[1]:
In [5]:
using HTTPClient.HTTPC
In [8]:
@doc post
Out[8]:
In [2]:
julia_doc_home = abspath(joinpath(JULIA_HOME, "../share/doc/julia"))
Out[2]:
In [3]:
cd(julia_doc_home)
In [4]:
run(`open html/index.html`)
In [10]:
examples = filter(r"\.jl$", readdir(joinpath(julia_doc_home, "examples")))
Out[10]:
In [13]:
for example_file in examples
full_path = joinpath(julia_doc_home, "examples", example_file)
# println(readall(open(full_path)))
println("Running $example_file\n")
include(full_path)
end
In [ ]: