RosettaCodeData/Task/CSV-to-HTML-translation/Ed/csv-to-html-translation.ed

16 lines
168 B
Text
Raw Permalink Normal View History

2024-10-16 18:07:41 -07:00
H
g/&/s//\&/g
g/</s//\&lt;/g
g/>/s//\&gt;/g
g/"/s//\&quote;/g
g/^/s// <tr><td>/g
g/,/s//<\/td><td>/g
g/$/s//<\/td>\
<\/tr>/
1s/^/<table>\
/
$s/$/\
<\/table>/
,p
Q