Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,42 @@
object CsvToHTML extends App {
val header = <head>
<title>CsvToHTML</title>
<style type="text/css">
td {{background-color:#ddddff; }} thead td {{background-color:#ddffdd; text-align:center; }}
</style>
</head>
val csv =
"""Character,Speech
|The multitude,The messiah! Show us the messiah!
|Brians mother,<angry>Now you listen here! He's not the messiah; he's a very naughty boy! Now go away!</angry>
|The multitude,Who are you?
|Brians mother,I'm his mother; that's who!
|The multitude,Behold his mother! Behold his mother!""".stripMargin
def csv2html(csv: String, withHead: Boolean) = {
def processRow(text: String) = <tr>
{text.split(',').map(s => <td>
{s}
</td>)}
</tr>
val (first :: rest) = csv.lines.toList // Separate the header and the rest
def tableHead = if (withHead)
<thead>
{processRow(first)}
</thead>
else processRow(first)
<html>
{header}<body>
<table>
{tableHead}{rest.map(processRow)}
</table>
</body>
</html>
}
println(csv2html(csv, true))
}

View file

@ -0,0 +1,50 @@
<html>
<head>
<title>CsvToHTML</title>
<style type="text/css">
td {background-color:#ddddff; } thead td {background-color:#ddffdd; text-align:center; }
</style>
</head><body>
<table>
<thead>
<tr>
<td>
Character
</td><td>
Speech
</td>
</tr>
</thead><tr>
<td>
The multitude
</td><td>
The messiah! Show us the messiah!
</td>
</tr><tr>
<td>
Brians mother
</td><td>
&lt;angry&gt;Now you listen here! He's not the messiah; he's a very naughty boy! Now go away!&lt;/angry&gt;
</td>
</tr><tr>
<td>
The multitude
</td><td>
Who are you?
</td>
</tr><tr>
<td>
Brians mother
</td><td>
I'm his mother; that's who!
</td>
</tr><tr>
<td>
The multitude
</td><td>
Behold his mother! Behold his mother!
</td>
</tr>
</table>
</body>
</html>