Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,24 @@
|
|||
string 0;
|
||||
char Input, S;
|
||||
[Input:=
|
||||
"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!";
|
||||
|
||||
Text(0, "<table>^m^j<tr><td>");
|
||||
S:= Input;
|
||||
while S(0) do
|
||||
[case S(0) of
|
||||
$0A: Text(0, "</td></tr>^m^j<tr><td>");
|
||||
^,: Text(0, "</td><td>");
|
||||
^<: Text(0, "<");
|
||||
^>: Text(0, ">");
|
||||
^&: Text(0, "&")
|
||||
other ChOut(0, S(0));
|
||||
S:= S+1;
|
||||
];
|
||||
Text(0, "</td></tr>^m^j</table>");
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue