Skip to content

Commit

Permalink
Highlight necessiry of an id on the <tr>
Browse files Browse the repository at this point in the history
I was hit by this again, this is also related to isocra#100

This you a new md markup available on github ;-)

Thank you for review and merge!

Gauthier
  • Loading branch information
gbastien authored Jul 4, 2022
1 parent 2c3ab8d commit 62425eb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ You'll also need to include [jQuery](https://jquery.com) before you include this

Let's create a simple table. The HTML for the table is very straight forward (no Javascript, pure HTML, we haven't added `thead` or `tbody` elements, but it works fine with these too):

> **Warning**
>
> **Every row in the HTML table must have a unique ID or it will fail (sadly without a clear message in the console for now...).**
```html
<table id="table-1" cellspacing="0" cellpadding="2">
<tr id="1"><td>1</td><td>One</td><td>some text</td></tr>
Expand Down

0 comments on commit 62425eb

Please sign in to comment.