Re: [xml-dev] Mixed Content

From
Jason Diamond <>
To
Date
2003-08-29T17:44:50Z
ID
<>
Thread
Re: [xml-dev] Mixed Content
Hello.

> In a DTD i've done this:
>
> <element paragraph (PCDATA,bold under)+>

<!ELEMENT paragraph (#PCDATA | bold | under)*>

> and you can fin XML elemts like:
>
> <paragraph>
>   This is text
>   <bold>this is bold text</bold>
>   this is text again
>   <under>this is underlined text</under>
> </paragraph>
>
> How can i create the templates i need for showing this structure?

What do you mean by "show"? Are you trying to transform it into HTML so
that the result can be rendered in a browser?

Jason