14 lines
344 B
Batchfile
14 lines
344 B
Batchfile
|
@setlocal
|
||
|
@call setexe
|
||
|
@set TMPFIL=strike5.html
|
||
|
@if NOT EXIST %TMPFIL% (
|
||
|
@echo Unable to locate FILE %TMPFIL%
|
||
|
@exit /b 1
|
||
|
)
|
||
|
|
||
|
@call testone
|
||
|
@REM %TMPEXE% -c -i --doctype html5 -o tempclean.html --tidy-mark no --show-info no %TMPFIL%
|
||
|
@REM %TMPEXE% -i --doctype html5 -o tempnoclean.html --tidy-mark no --show-info no %TMPFIL%
|
||
|
|
||
|
@echo See %TMPINFO%
|