docs: revise thesis narrative, diagrams, and build layout
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user