3REM Windows Command Line Script (Batch) to open the documentation
4REM in the default web browser.
6REM It does not wait and returns immediately.
9REM * Default web browser
11REM © 2025 Michael Paul Korthals. All rights reserved.
12REM See documentation for legal details.
15REM This script is located in the sub folder "docs"
16REM in the project main directory.
18REM Simply open it in Windows Explorer or call it by command:
19REM > pyenv virtualenv --docs
21set "FILE_PATH=%~dp0\html\index.html"
22if not exist %FILE_PATH% goto error1
23REM Show what is going on here
24echo ␛[37mINFO Opening documentation in default web browser ...␛[0m
25REM Open the documentation
26start "Doxygen Documentation" "%FILE_PATH%"
27echo ␛[92mSUCCESS DONE.␛[0m
33echo ␛[91mERROR Cannot find the documention index HTML file.␛[0m
34echo ␛[37mINFO Check/Reinstall the program.␛[0m