-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_wiki_builder.bat
More file actions
44 lines (39 loc) · 1.03 KB
/
run_wiki_builder.bat
File metadata and controls
44 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@echo off
echo Starting Markdown to Wiki Builder...
echo.
REM Check if Python is installed
python --version >nul 2>&1
if errorlevel 1 (
echo Python is not installed or not in PATH
echo Please install Python and try again
pause
exit /b 1
)
REM Install required packages
echo Installing required packages...
pip install requests
echo.
echo ============================================================
echo Markdown to Wiki Builder
echo ============================================================
echo.
echo This tool will:
echo - Let you select multiple markdown files
echo - Analyze and structure the content
echo - Generate a comprehensive wiki with:
echo * Table of contents
echo * Organized sections
echo * Cross-references
echo * Keyword index
echo * ~20,000 words of content
echo.
echo You'll need an OpenRouter API key.
echo Get one free at: https://openrouter.ai/
echo.
echo ============================================================
echo.
pause
REM Run the wiki builder
python combine_md_to_wiki.py
echo.
pause