> From: John Cowan >
> >> So if a PI has a target and data, what is the data in the following
> scenarios?
> >>
> >> <?Foo?>
> >> <?Foo ?>
> >>
> >> Is the first null data and the second a string of spaces?
> >
> >The first case is definitely null data. Production 16 says that
> >the optional data is prefixed by one or more whitespace characters
> >which are not part of it
>
> Are you reading the same spec as me?
As a side note, if you want to send whitespace in a PI, then you should not
use
<?Foo ?>
but
<?Foo " "?>
or something similar, according to whatever tokenizing notation you define
for Foo.
Processing instructions should use some processing instruction language,
i.e. one which is tokenized with spaces and delimiters, as is ubiquitous.
They were not designed to transport "data" which could include significant
initial spaces. IMHO, people should try to use attribute syntax and
conventions if at all possible.
Rick Jelliffe