@@ -11,11 +11,10 @@ tutorial_menu = Array{Pair{String,String},1}()
11
11
#
12
12
# Generate Pluto Tutorial HTMLs
13
13
14
- # First tutorial with AD
15
- pluto_src_folder = joinpath (@__DIR__ , " src" , " tutorials" )
16
- pluto_output_folder = joinpath (@__DIR__ , " src" , " tutorials" )
17
- pluto_relative_path = " tutorials/"
18
- mkpath (pluto_output_folder)
14
+ # pluto_src_folder = joinpath(@__DIR__, "src", "tutorials")
15
+ # pluto_output_folder = joinpath(@__DIR__, "src", "tutorials")
16
+ # pluto_relative_path = "tutorials/"
17
+ # mkpath(pluto_output_folder)
19
18
20
19
# """
21
20
# build()
@@ -35,39 +34,39 @@ mkpath(pluto_output_folder)
35
34
# build()
36
35
# end
37
36
38
- # Please do not use the same name as for a(n old) literate Tutorial
39
- pluto_files = [
40
- " gnn_intro_pluto" ,
41
- " graph_classification_pluto" ,
42
- ]
43
- pluto_titles = [
44
- " Intro to Graph Neural Networks " ,
45
- " Graph Classification" ,
46
- ]
37
+ # # Please do not use the same name as for a(n old) literate Tutorial
38
+ # pluto_files = [
39
+ # "gnn_intro_pluto",
40
+ # "graph_classification_pluto",
41
+ # ]
42
+ # pluto_titles = [
43
+ # "Intro to Graph Neural Networks ",
44
+ # "Graph Classification",
45
+ # ]
47
46
48
- # build menu and write files myself - tp set edit url correctly.
49
- for (title, file) in zip (pluto_titles, pluto_files)
50
- global tutorial_menu
51
- rendered = build_notebooks ( # though not really parallel here
52
- BuildOptions (
53
- pluto_src_folder;
54
- output_format= documenter_output,
55
- write_files= false ,
56
- use_distributed= false ,
57
- ),
58
- [" $(file) .jl" ],
59
- )
60
- write (
61
- joinpath (pluto_output_folder, file * " .md" ),
62
- """
63
- ```@meta
64
- EditURL = "$(joinpath (pluto_src_folder, file * " .jl" )) "
65
- ```
66
- $(rendered[1 ])
67
- """ ,
68
- )
69
- push! (tutorial_menu, title => joinpath (pluto_relative_path, file * " .md" ))
70
- end
47
+ # # build menu and write files myself - tp set edit url correctly.
48
+ # for (title, file) in zip(pluto_titles, pluto_files)
49
+ # global tutorial_menu
50
+ # rendered = build_notebooks( #though not really parallel here
51
+ # BuildOptions(
52
+ # pluto_src_folder;
53
+ # output_format=documenter_output,
54
+ # write_files=false,
55
+ # use_distributed=false,
56
+ # ),
57
+ # ["$(file).jl"],
58
+ # )
59
+ # write(
60
+ # joinpath(pluto_output_folder, file * ".md"),
61
+ # """
62
+ # ```@meta
63
+ # EditURL = "$(joinpath(pluto_src_folder, file * ".jl"))"
64
+ # ```
65
+ # $(rendered[1])
66
+ # """,
67
+ # )
68
+ # push!(tutorial_menu, title => joinpath(pluto_relative_path, file * ".md"))
69
+ # end
71
70
72
71
DocMeta. setdocmeta! (GraphNeuralNetworks, :DocTestSetup ,
73
72
:(using GraphNeuralNetworks, Graphs, SparseArrays, NNlib, Flux);
@@ -87,7 +86,7 @@ makedocs(;
87
86
" Message Passing" => " messagepassing.md" ,
88
87
" Model Building" => " models.md" ,
89
88
" Datasets" => " datasets.md" ,
90
- " Tutorials" => tutorial_menu,
89
+ # "Tutorials" => tutorial_menu,
91
90
# "Tutorials" =>
92
91
# [
93
92
# "Intro to Graph Neural Networks" => "gnn_intro_pluto.md",
0 commit comments