axr / website

The repository for the AXR Project website
axrproject.org
13 stars 3 forks source link

Object shorthand stack table #467

Closed Mouvedia closed 11 years ago

Mouvedia commented 11 years ago

Each property should be automatically linked.

HTML code

<table>
<tr>
  <th colspan="<N+1>">Shorthand Stack</th>
</tr>
<tr>
  <th>position</th>
  <td>first</td>
  <td>second</td>
</tr>
<tr>
  <th>property</th>
  <td>property1</td>
  <td>property2</td>
</tr>
</table>

or

<table>
<tr>
  <th colspan="<N>">Shorthand Stack Order</th>
</tr>
<tr>
  <td>&#9312;</td>
  <td>&#9313;</td>
</tr>
<tr>
  <td>property1</td>
  <td>property2</td>
</tr>
</table>

JSON

A number field named position could be added on properties to auto generate the table's TDs.

Ragnis commented 11 years ago

23d33f3