Golly and HTML tables

Has something gone haywire? Let us know about it!
Post Reply
User avatar
lifeisawesome
Posts: 86
Joined: April 22nd, 2016, 1:55 pm
Location: poland

Golly and HTML tables

Post by lifeisawesome » November 28th, 2017, 6:19 am

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 4287 times
Here's what it looks like in Golly's browser.
golly.png
golly.png (678 Bytes) Viewed 4287 times
Edit: fixed up a bit
--Szymon Bartosiewicz
favorite pattern:

Code: Select all

x = 2, y = 2, rule = B25/S3a
2o$2o!

User avatar
Andrew
Moderator
Posts: 919
Joined: June 2nd, 2009, 2:08 am
Location: Melbourne, Australia
Contact:

Re: Golly and HTML tables

Post by Andrew » January 19th, 2018, 8:43 pm

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
Use Glu to explore CA rules on non-periodic tilings: DominoLife and HatLife

Post Reply