Skip to content
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

Only generate an attribute prefix if required #30

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1359,19 +1359,27 @@ <h2>Extensibility</h2>
"<code>xmlns</code>".
</ol>

<li>Otherwise, the <var>attribute namespace</var> in not the <a>XMLNS namespace</a>. Run
these steps:
<li>Otherwise, the <var>attribute namespace</var> is not the <a>XMLNS namespace</a>. If
<var>candidate prefix</var> is null, run these steps:
<ol>
<li>Let <var>candidate prefix</var> be the result of <a>generating a prefix</a> providing
<var>map</var>, <var>attribute namespace</var>, and <var>prefix index</var> as input.
<li>Let <var>new prefix</var> be <var>attr</var>'s <code><a>prefix</a></code> attribute if it is
not <code>null</code> and the <var>local prefixes map</var> does not contain a key matching
<var>attr</var>'s <code><a>prefix</a></code>, or the result of <a>generating a prefix</a> providing
<var>map</var>, <var>attribute namespace</var>, and <var>prefix index</var> as input otherwise.

<li><a>Add</a> <var>new prefix</var> to <var>map</var> given namespace <var>attribute namespace</var>.

<li>Add the value of <var>new prefix</var> as a new key to the <var>local prefixes map</var>, with
the <var>attribute namespace</var> as the key's value replacing the value of <code>null</code> with
the empty string if applicable.

<li>Append the following to <var>result</var>, in the order listed:
<ol>
<li>"<code> </code>" (U+0020 SPACE);

<li>The string "<code>xmlns:</code>";

<li>The value of <var>candidate prefix</var>;
<li>The value of <var>new prefix</var>;

<li>"<code>="</code>" (U+003D EQUALS SIGN, U+0022 QUOTATION MARK);

Expand Down