You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
for /d %%A in (.\*) do (
|
|
set "except="
|
|
if /i "%%~nxA" == "temp" set "except=1"
|
|
if /i "%%~nxA" == "_site" set "except=1"
|
|
if /i "%%~nxA" == ".jekyll-cache" set "except=1"
|
|
if not defined except (
|
|
for %%j in (%%A\*.md) do (
|
|
marp %%j -o %%~pj%%~nj-slides.html --html true
|
|
)
|
|
)
|
|
)
|