empty html

This commit is contained in:
Chris Wanstrath 2025-09-21 19:21:11 -07:00
parent b14d7e0993
commit cd3c1de04b

View File

@ -67,7 +67,7 @@ function processOutput(output: CommandOutput): ["html" | "text", string] {
if (typeof output === "string") {
content = output
} else if (output.html) {
} else if (output.html !== undefined) {
html = true
content = output.html
} else {