Table Problems

[code]Period is a kind of value. The periods are morning, midday, and evening.
Table 1 - News Items
Period News
Morning “Today, a sad tragedy occured in near the Dimon district.”
Morning “later”
Midday “So”
Midday “Then they”
Midday “And so”
Evening “Decling output has lead to the seizure and auction of Huyam Manufacturing plant”
Evening “Service has been temporarily disrupted for maintainance”

Climate is a kind of value. The climates are hot, norm, cold, frigid, and off.
Ventilation is a kind of value. The ventilations are on, vacuum, and off.
Define security as security level. Security level is a kind of value. The securitys are none, low, high, and sealed.
Comms is a kind of value. The comms are on, restricted, and off.

Table 2 - Table of Atmospherics Settings
Sector Climate Venting Security Power Utilities Comms
Alpha norm on low on on on
Beta norm on none on on on
Core cold on high on off on
Gamma off vacuum sealed off off on
Delta on on low on on on[/code]

I have no clue what to do here.

The first error message is because you don’t have a line space before the table. When you define climate, ventilation and security levels, you have the word “off” in each of them, but each value has to have unique properties. Also, “on” is a reserved word. “Define security as security level” doesn’t mean anything.

[code]Period is a kind of value. The periods are morning, midday, and evening.

Table 1 - News Items
Period News
Morning “Today, a sad tragedy occured in near the Dimon district.”
Morning “later”
Midday “So”
Midday “Then they”
Midday “And so”
Evening “Decling output has lead to the seizure and auction of Huyam Manufacturing plant”
Evening “Service has been temporarily disrupted for maintainance”

Climate is a kind of value. The climates are hot, norm, cold, frigid, and unset.

Ventilation is a kind of value. The ventilations are running, vacuum, and stopped.

Security level is a kind of value. The security levels are none, low, high, and sealed.

Comms is a kind of value. The comms are available, restricted, and unavailable.[/code]

Hey, how am I supposed to see the space before each table in the documentation? Oh well. Now I know. Thank you.