rjeschke / txtmark

Yet another markdown processor for the JVM
Apache License 2.0
449 stars 100 forks source link

Add Table Tag Support: #32

Open BuilderQiu opened 9 years ago

BuilderQiu commented 9 years ago

Translate Markdown :

titleA|titleB|titleC|titleD
---|---|---|---|---
a|b|c|d
1|2|3|4
...

To Html:

  <table>
   <thead>
    <tr>
     <th>titleA</th>
     <th>titleB</th>
     <th>titleC</th>
     <th>titleD</th>
    </tr>
   </thead>
   <tbody>
    <tr>
     <td>a</td>
     <td>b</td>
     <td>c</td>
     <td>d</td>
    </tr>
    <tr>
     <td>1</td>
     <td>2</td>
     <td>3</td>
     <td>4</td>
    </tr>
   </tbody>
  </table>
rjeschke commented 9 years ago

After a quick look, I do have some major concerns:

BuilderQiu commented 9 years ago

Thanks for your reply,and something I want to know: