#!/bin/sh input=$(cat -) input="${input#odin run src/}" style="" doctype='' meta='' start="$doctypeTypoML Preview$meta$style" end="" output="$start$input$end" echo "$output" > /tmp/preview.html nohup xdg-open /tmp/preview.html > /dev/null 2>&1 &