sparkup 

Send to Kindle
home » snippets » vim » sparkup



Examples

Table

This following

table > tr*2 > td.name > p{ckck} < td*2 > p{something}

expands to

<table cellspacing="0">
  <tr>
    <td class="name">
      <p>ckck</p>
    </td>
    <td>
      <p>something</p>
    </td>
    <td>
      <p>something</p>
    </td>
  </tr>
  <tr>
    <td class="name">
      <p>ckck</p>
    </td>
  </tr>
</table>