Skip to content

Instantly share code, notes, and snippets.

@carlwiedemann
Created November 12, 2012 22:26
Show Gist options
  • Select an option

  • Save carlwiedemann/4062414 to your computer and use it in GitHub Desktop.

Select an option

Save carlwiedemann/4062414 to your computer and use it in GitHub Desktop.
// <ol id="x">
// <li id="id-first">first</li>
// <li>second</li>
// <li>third</li>
// </ol>
return array(
'#theme' => 'ol',
'items' => array(
array(
'text' => 'first',
'attributes' => array('id' => 'id-first'),
),
'second',
'third',
),
'attributes' => array(
'id' => 'x',
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment