Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
(load "@lib/http.l")
|
||||
|
||||
(in "text.csv"
|
||||
(<table> 'myStyle NIL NIL
|
||||
(prinl)
|
||||
(while (split (line) ",")
|
||||
(<row> NIL (ht:Prin (pack (car @))) (ht:Prin (pack (cadr @))))
|
||||
(prinl) ) ) )
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<table class="myStyle">
|
||||
<tr><td>Character</td><td>Speech</td></tr>
|
||||
<tr><td>The multitude</td><td>The messiah! Show us the messiah!</td></tr>
|
||||
<tr><td>Brians mother</td><td><angry>Now you listen here! He's not the messiah; he's a very naughty boy! Now go away!</angry></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>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
(load "@lib/http.l")
|
||||
|
||||
(in "text.csv"
|
||||
(when (split (line) ",")
|
||||
(<table> 'myStyle NIL (mapcar '((S) (list NIL (pack S))) @)
|
||||
(prinl)
|
||||
(while (split (line) ",")
|
||||
(<row> NIL (ht:Prin (pack (car @))) (ht:Prin (pack (cadr @))))
|
||||
(prinl) ) ) ) )
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<table class="myStyle"><tr><th>Character</th><th>Speech</th></tr>
|
||||
<tr><td>The multitude</td><td>The messiah! Show us the messiah!</td></tr>
|
||||
<tr><td>Brians mother</td><td><angry>Now you listen here! He's not the messiah; he's a very naughty boy! Now go away!</angry></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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue