Skip to content

Instantly share code, notes, and snippets.

@Mr0grog
Created April 15, 2009 19:29
Show Gist options
  • Save Mr0grog/95974 to your computer and use it in GitHub Desktop.
Save Mr0grog/95974 to your computer and use it in GitHub Desktop.
Container C2
-------
| | |
-------
{
size: { width: 600 }
columns: [0,300],
rows: [
{
position: 0,
columns: [
{ position: 0, children: {...} },
{ position: 300, children: {...} }
]
}
]
}
<table cellspacing="0" cellpadding="0" width="600">
<tr>
<td width="300">CONTENT</td>
<td width="300">CONTENT</td>
</tr>
</table>
Links
{
itemType: "image",
url: "http://somewhere.com/image.png",
link: "http://google.com/"
}
==
<a href="http://google.com/"><img src="http://somewhere.com/image.png" /></a>
{
itemType: "image",
url: "http://somewhere.com/image.png",
link: null
}
==
<img src="http://somewhere.com/image.png" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment