Email list hosting service & mailing list manager

Re: shared-text substrings Dan Bornstein (07 Feb 2000 19:59 UTC)
Re: shared-text substrings Mike Wilson (08 Feb 2000 17:34 UTC)
Re: shared-text substrings Shriram Krishnamurthi (08 Feb 2000 17:46 UTC)
Re: shared-text substrings Per Bothner (08 Feb 2000 18:06 UTC)
Re: shared-text substrings Shriram Krishnamurthi (08 Feb 2000 18:16 UTC)
Re: shared-text substrings Per Bothner (08 Feb 2000 19:11 UTC)
Re: shared-text substrings Shriram Krishnamurthi (08 Feb 2000 20:41 UTC)

Re: shared-text substrings Per Bothner 08 Feb 2000 18:06 UTC

Shriram Krishnamurthi <xxxxxx@cs.rice.edu> writes:

> Now I use the PLT Scheme XML collection, and couldn't be happier.
> Here's a random excerpt from a program/document:
>
> `(p ((align "CENTER"))
> 	(table ((style "font-size: x-large"))
> 	       (tr ()
> 		   (td ((align "RIGHT")) "Talks ")
> 		   (td ((align "CENTER")) " = ") ...

It's even nicer when your Scheme dialect has keywords:

`(p align: "CENTER"
	(table style: "font-size: x-large"
	       (tr
		   (td align: "RIGHT" "Talks ")
		   (td align: "CENTER" " = ") ...

	--Per Bothner
xxxxxx@bothner.com   http://www.bothner.com/~per/