Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if "%1" == "clean" goto clean
if "%1" == "clean-examples" goto clean-examples
if "%1" == "clean-except-examples" goto clean-except-examples
if "%1" == "linkcheck" goto linkcheck
if "%1" == "html-noexamples" goto html-noexamples


%SPHINXBUILD% >NUL 2>NUL
Expand All @@ -34,6 +35,11 @@ if errorlevel 9009 (
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
goto end

:html-noexamples
echo Running without examples
%SPHINXBUILD% -D plot_gallery=0 -b html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
goto end

:clean-except-examples
echo Cleaning everything except examples
rmdir /s /q %BUILDDIR% > /NUL 2>&1
Expand Down
Loading