Re: [xml-dev] SML: Second Try

From
Mike Champion <>
To
'Xml-Dev' <>
Date
2003-02-05T13:54:22Z
ID
<>
Thread
Re: [xml-dev] SML: Second Try
On Wed, 5 Feb 2003 03:17:55 -0800, Don Park <> wrote:

  [on mixed content]
>
> I am thinking the following will suffice:
>
> A attr1="blah"
> "some text"
> B="lala"
> "some more text"
> C
> "inner text"
>
> In this example, readability suffers somewhat.  Oh, well.  I never liked
> mixed-contents.

How about using something like '' as a magic tag for text in mixed content. 
 That is,  for the XML

  <a attr1="blah">some text <b>lala</b> some more text <c>inner 
text</c></a>
	
The SML might be

  a attr1="blah"
  	'' 		some text
	b
		lala
	'' 		some  more text
	c
		inner text