YASnippet/publidoc-mode/publidoc_table
author iinov
mer., 05 sept. 2018 17:54:38 +0200
changeset 462 61f23b379b5d
parent 365 317036597359
permissions -rw-r--r--
Intrus en exercice de tri
# -*- mode: snippet; -*-
# name: <table>
# key: <tab=
# --
<table>
  <head>
    <title>$1</title>
  </head>
  <thead>
    <tr>
      <td>$2</td>
      <td>$3</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>$4</td>
      <td>$5</td>
    </tr>
  </tbody>
</table>