Sha256: 6db228ee70a9e30db23d2b0ac49163372873e6fa83a78479d1c8da45e43252ee

Contents?: true

Size: 1.52 KB

Versions: 3

Compression:

Stored size: 1.52 KB

Contents

#$Id: test-tables.yml 124 2006-05-07 16:28:09Z larry $

title: OneLineTable
in: "[|bob||jim|]"
html: |-
  <table class="">
  <tr><td>bob</td><td>jim</td></tr>
  </table>
---
title: OneLineTableWithBarInCell
in: "[|bob|mike||jim|]"
html: |-
  <table class="">
  <tr><td>bob|mike</td><td>jim</td></tr>
  </table>
---
title: OneLineHeaderTable
in: "[!bob|!jim|]"
html: |-
  <table class="">
  <tr><th>bob</th><th>jim</th></tr>
  </table>
---
title: OneLineTableWithClass
in: "[class|bob||jim|]"
html: |-
  <table class="class">
  <tr><td>bob</td><td>jim</td></tr>
  </table>
---
title: OneRowMultipleLines
in: |-
  [|
  bob
  ||
  jim
  |]
html: |-
  <table class="">
  <tr><td><p>bob</p></td><td><p>jim</p></td></tr>
  </table>
---
title: TwoLineTable
in: |-
  [|first||last|]
  [|billy||bob|]
html: |-
  <table class="">
  <tr><td>first</td><td>last</td></tr>
  <tr><td>billy</td><td>bob</td></tr>
  </table>
---
title: TwoLineTableWithClass
in: |-
  [class|first||last|]
  [|billy||bob|]
html: |-
  <table class="class">
  <tr><td>first</td><td>last</td></tr>
  <tr><td>billy</td><td>bob</td></tr>
  </table>
---
title: TwoLineTableWithClassAndHeaders
in: |-
  [class!first|!last|]
  [|billy||bob|]
html: |-
  <table class="class">
  <tr><th>first</th><th>last</th></tr>
  <tr><td>billy</td><td>bob</td></tr>
  </table>
---
title: TwoOneLineTablesWithClass
in: |-
  [class1|joe||sally|]
  [class2|bob||jim|]
html: |-
  <table class="class1">
  <tr><td>joe</td><td>sally</td></tr>
  </table><table class="class2">
  <tr><td>bob</td><td>jim</td></tr>
  </table>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tartan-0.2.0 test/test-tables.yml
tartan-0.1.1 test/test-tables.yml
tartan-0.1.0 test/test-tables.yml