-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe how XML namespace support works #166
Comments
Need to think about where we have imported a module as |
Things that need to be said:
|
Could you please elaborate on second point |
I meant
This is so you can say:
Thus the xml prefix (which is a module prefix) will work like prefixes that are defined as namespace prefixes. It should also work for
but the spec doesn't cover this yet. |
The spec describes the syntax for describing an XML namespace, but we don't completely describe the effect that this is supposed to have. If we have a xmlns decl for a prefix
p
as namespaceuri
, then in certain situations a qualified identifierp:ident
is supposed to turn into an expanded name{uri}ident
.This is an important point, because it was part of the motivation for using
prefix:name
as the qualified identifier syntax.Relates to #85.
The text was updated successfully, but these errors were encountered: