We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae751a commit 4c99bcaCopy full SHA for 4c99bca
test/runtests.jl
@@ -84,6 +84,27 @@ docs = [
84
# giturl = "[email protected]:JuliaComputing/DataSets.jl.git",
85
),
86
]
87
+
88
+if Sys.iswindows()
89
+ @test_throws ErrorException MultiDocumenter.make(
90
+ outpath,
91
+ docs;
92
+ search_engine = MultiDocumenter.SearchConfig(
93
+ index_versions = ["stable", "dev"],
94
+ engine = MultiDocumenter.FlexSearch,
95
+ ),
96
+ custom_scripts = [
97
+ "foo/bar.js",
98
+ "https://foo.com/bar.js",
99
+ Docs.HTML("const foo = 'bar';"),
100
+ ],
101
+ rootpath = rootpath,
102
+ canonical_domain = "https://example.org/",
103
+ sitemap = true,
104
+ sitemap_filename = "sitemap-mydocs.xml",
105
+ )
106
+end
107
108
MultiDocumenter.make(
109
outpath,
110
docs;
0 commit comments