Page 1 of 1

Golly and HTML tables

Posted: November 28th, 2017, 6:19 am
by lifeisawesome
This is the code I am using. stupid forums, instantly thinking any HTML code is a "threat"...

Code: Select all

<!doctype html>

<html>
<head>
<style>
table {
  border-collapse: collapse;
}
table, tr, td {
  border: 1px solid #000;
}
td {
  padding: 5px;
}
</style>
<title>Configuration table for non-totalistic Life-like rules</title>
</head>
<body>
<table>
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>4</td><td>5</td><td>6</td></tr>
<tr><td>7</td><td>8</td><td>9</td></tr>
</table>
</body>
</html>
Here's what it looks like in Google Chrome.
chrome.png
chrome.png (916 Bytes) Viewed 4300 times
Here's what it looks like in Golly's browser.
golly.png
golly.png (678 Bytes) Viewed 4300 times
Edit: fixed up a bit

Re: Golly and HTML tables

Posted: January 19th, 2018, 8:43 pm
by Andrew
The wxHTML library used by Golly doesn't support all the valid HTML tags. See details here:
http://docs.wxwidgets.org/3.0/overview_html.html