CSV to HTML translation: Difference between revisions

Content added Content deleted
Line 1,682: Line 1,682:
</tbody></table></lang>
</tbody></table></lang>


No escaping nonsense:
No escaping:
{{output?|JavaScript}}
<lang javascript>
function csv_to_table(s) {
<lang javascript>function csv_to_table(s) {
function ce(t) { return document.createElement(t); }
function ce(t) { return document.createElement(t); }
function ap(t) { document.body.appendChild(t); }
function ap(t) { document.body.appendChild(t); }
Line 1,703: Line 1,703:
/*
/*
but also with this changes is very dependent by javascript engine and/or browser version (in: IE>=9, chrome )
but also with this changes is very dependent by javascript engine and/or browser version (in: IE>=9, chrome )
*/
*/</lang>
</lang>


=={{header|Liberty BASIC}}==
=={{header|Liberty BASIC}}==