Files
TypoML/preview
T
2026-07-14 18:06:42 +02:00

12 lines
501 B
Bash
Executable File

#!/bin/sh
input=$(cat -)
input="${input#odin run src/}"
style="<style>$(cat styles.css)</style>"
doctype='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">'
meta='<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'
start="$doctype<html><head><title>TypoML Preview</title>$meta$style</head><body>"
end="</body></html>"
output="$start$input$end"
echo "$output" > /tmp/preview.html
nohup xdg-open /tmp/preview.html > /dev/null 2>&1 &