docs: revise thesis narrative, diagrams, and build layout

This commit is contained in:
lda
2026-09-08 03:56:15 +07:00 Verified
parent bb361b7f89
commit 7518954ab3
11 changed files with 2214 additions and 1802 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
# Generate both HTML and PDF outputs for one Markdown file.
param(
[string]$file = $(throw "File is required."),
[string]$file = (Join-Path $PSScriptRoot "system-design-implementation.md"),
[Parameter(ValueFromRemainingArguments = $true)]
[string[]]$RemainingArgs = @()
)
@@ -37,6 +37,6 @@ function Get-OutputFilenames([string] $file, [string] $type) {
Write-Host "Generating HTML and PDF for $file..."
Write-Debug "Remaining args: $($RemainingArgs | Format-List)"
& $PSScriptRoot\generate.ps1 -type html -- -i $file -o (Get-OutputFilenames $file "html") --resource-path $resourcePath @RemainingArgs
& $PSScriptRoot\generate.ps1 -type html -i $file -o (Get-OutputFilenames $file "html") -- --resource-path $resourcePath @RemainingArgs
& $PSScriptRoot\generate.ps1 -type pdf -- -i $file -o (Get-OutputFilenames $file "pdf") --resource-path $resourcePath @RemainingArgs
& $PSScriptRoot\generate.ps1 -type pdf -i $file -o (Get-OutputFilenames $file "pdf") -- --resource-path $resourcePath @RemainingArgs