Skip to content

Commit 30c73cd

Browse files
author
australiensun
committed
add different html output scripts
1 parent b1b6943 commit 30c73cd

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

make-HTMLHelp.cmd

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
SETLOCAL
2+
rem TODO: adapt
3+
path=%path%;C:\Program Files (x86)\HTML Help Workshop
4+
5+
call make.cmd htmlhelp
6+
if %errorlevel% neq 0 goto :error
7+
8+
hhc.exe build\htmlhelp\GitExtensionsDocdoc.hhp
9+
start build\htmlhelp\GitExtensionsDocdoc.chm
10+
goto :end
11+
12+
:error
13+
pause
14+
15+
:end

make-html.cmd

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
SETLOCAL
2+
3+
call make.cmd html
4+
if %errorlevel% neq 0 goto :error
5+
6+
:error
7+
pause
8+
9+
:end

make-singlehtml.cmd

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
SETLOCAL
2+
3+
call make.cmd singlehtml
4+
if %errorlevel% neq 0 goto :error
5+
6+
:error
7+
pause
8+
9+
:end

0 commit comments

Comments
 (0)