File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,42 +129,42 @@ <h2 class="text-xl font-semibold text-gray-800 mb-4">Results</h2>
129129
130130 // Load sample HTML table data
131131 const sampleTableHtml = `<table>
132- <tr>
133- <th>Company</th>
134- <th>Contact</th>
135- <th>Country</th>
136- </tr>
137- <tr>
138- <td>Alfreds Futterkiste</td>
139- <td>Maria Anders</td>
140- <td>Germany</td>
141- </tr>
142- <tr>
143- <td>Centro comercial Moctezuma</td>
144- <td>Francisco Chang</td>
145- <td>Mexico</td>
146- </tr>
147- <tr>
148- <td>Ernst Handel</td>
149- <td>Roland Mendel</td>
150- <td>Austria</td>
151- </tr>
152- <tr>
153- <td>Island Trading</td>
154- <td>Helen Bennett</td>
155- <td>UK</td>
156- </tr>
157- <tr>
158- <td>Laughing Bacchus Winecellars</td>
159- <td>Yoshi Tannamuri</td>
160- <td>Canada</td>
161- </tr>
162- <tr>
163- <td>Magazzini Alimentari Riuniti</td>
164- <td>Giovanni Rovelli</td>
165- <td>Italy</td>
166- </tr>
167- </table>` ;
132+ <tr>
133+ <th>Company</th>
134+ <th>Contact</th>
135+ <th>Country</th>
136+ </tr>
137+ <tr>
138+ <td>Alfreds Futterkiste</td>
139+ <td>Maria Anders</td>
140+ <td>Germany</td>
141+ </tr>
142+ <tr>
143+ <td>Centro comercial Moctezuma</td>
144+ <td>Francisco Chang</td>
145+ <td>Mexico</td>
146+ </tr>
147+ <tr>
148+ <td>Ernst Handel</td>
149+ <td>Roland Mendel</td>
150+ <td>Austria</td>
151+ </tr>
152+ <tr>
153+ <td>Island Trading</td>
154+ <td>Helen Bennett</td>
155+ <td>UK</td>
156+ </tr>
157+ <tr>
158+ <td>Laughing Bacchus Winecellars</td>
159+ <td>Yoshi Tannamuri</td>
160+ <td>Canada</td>
161+ </tr>
162+ <tr>
163+ <td>Magazzini Alimentari Riuniti</td>
164+ <td>Giovanni Rovelli</td>
165+ <td>Italy</td>
166+ </tr>
167+ </table>`;
168168 $ ( '#tableInput' ) . val ( sampleTableHtml ) ;
169169
170170 $ ( '#analyzeButton' ) . on ( 'click' , function ( ) {
Original file line number Diff line number Diff line change @@ -171,12 +171,12 @@ <h2 class="text-xl font-semibold text-gray-800 mb-4">Results</h2>
171171 $ ( document ) . ready ( function ( ) {
172172 // Load sample data
173173 const sampleData = `Company Contact Country
174- Alfreds Futterkiste Maria Anders Germany
175- Centro comercial Moctezuma Francisco Chang Mexico
176- Ernst Handel Roland Mendel Austria
177- Island Trading Helen Bennett UK
178- Laughing Bacchus Winecellars Yoshi Tannamuri Canada
179- Magazzini Alimentari Riuniti Giovanni Rovelli Italy` ;
174+ Alfreds Futterkiste Maria Anders Germany
175+ Centro comercial Moctezuma Francisco Chang Mexico
176+ Ernst Handel Roland Mendel Austria
177+ Island Trading Helen Bennett UK
178+ Laughing Bacchus Winecellars Yoshi Tannamuri Canada
179+ Magazzini Alimentari Riuniti Giovanni Rovelli Italy`;
180180 $ ( '#dataInput' ) . val ( sampleData ) ;
181181
182182 // Event listeners
You can’t perform that action at this time.
0 commit comments