Given an HTML template like this, how can I insert stdout output at the marker Insert_Text_Here?
<!DOCTYPEhtml>
<html>
<head>
<title></title>
</head>
<body>
<table>
Insert_Text_Here
</table>
</body>
</html>
The stdout is generated by XTide, a unix command line program for tide prediction. I didn’t know where to start with which language/scripting to feed the stdout into an HTML template. I’m not at all knowledgeable in JS, fairly good with utilities like awk, sed, teeter.
All running locally on a Mac mini M1, MacOS 12.7.6 (Monterey)
3