Skip to content

Commit 74781a0

Browse files
committed
Don't comment WebIDL pre blocks.
1 parent 337d0be commit 74781a0

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

index.html

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5496,26 +5496,26 @@ <h3>The <dfn>JsonLdProcessor</dfn> Interface</h3>
54965496
</dd>
54975497
</dl>
54985498

5499-
<pre class="idl changed" data-transform="unComment"><!--
5499+
<pre class="idl changed">
55005500
dictionary JsonLdDictionary {};
5501-
--></pre>
5501+
</pre>
55025502
<p class="changed">The <dfn>JsonLdDictionary</dfn> is the definition of a <a>map</a>
55035503
used to contain arbitrary <a>map entries</a>
55045504
which are the result of parsing a <a>JSON Object</a>.
55055505

5506-
<pre class="idl changed" data-transform="unComment"><!--
5506+
<pre class="idl changed">
55075507
typedef (JsonLdDictionary or sequence&lt;JsonLdDictionary> or USVString) JsonLdInput;
5508-
--></pre>
5508+
</pre>
55095509

55105510
<p class="changed">The <dfn>JsonLdInput</dfn> type is used to refer to an input value
55115511
that that may be a <a>map</a>,
55125512
an array of <a>maps </a>,
55135513
or a <a>string</a> representing an <a>IRI</a>
55145514
which can be dereferenced to retrieve a valid JSON document.</p>
55155515

5516-
<pre class="idl" data-transform="unComment"><!--
5516+
<pre class="idl">
55175517
typedef (JsonLdDictionary or USVString or sequence&lt;(JsonLdDictionary or USVString)>) JsonLdContext;
5518-
--></pre>
5518+
</pre>
55195519

55205520
<p>The <dfn>JsonLdContext</dfn> type is used to refer to a value
55215521
that may be a <a class="changed">map</a>,
@@ -5533,7 +5533,7 @@ <h3>RDF Dataset Interfaces</h3>
55335533
The interface may be used for constructing a new <a>RDF dataset</a>,
55345534
which has a <a>default graph</a> accessible via the <a data-link-for="RdfDataset">defaultGraph</a> attribute.</p>
55355535

5536-
<pre class="idl changed" data-transform="unComment">
5536+
<pre class="idl changed">
55375537
[Constructor, Exposed=Window]
55385538
interface RdfDataset {
55395539
readonly attribute RdfGraph defaultGraph;
@@ -5575,7 +5575,7 @@ <h3>RDF Dataset Interfaces</h3>
55755575
The interface may be used for constructing a new <a>RDF graph</a>,
55765576
which is composed of zero or more <a>RdfTriple</a> instances.</p>
55775577

5578-
<pre class="idl changed" data-transform="unComment">
5578+
<pre class="idl changed">
55795579
[Constructor, Exposed=Window]
55805580
interface RdfGraph {
55815581
void add(RdfTriple triple);
@@ -5603,7 +5603,7 @@ <h3>RDF Dataset Interfaces</h3>
56035603

56045604
<p>The <dfn>RdfTriple</dfn> interface describes an <a>triple</a>.</p>
56055605

5606-
<pre class="idl changed" data-transform="unComment">
5606+
<pre class="idl changed">
56075607
[Constructor, Exposed=Window]
56085608
interface RdfTriple {
56095609
readonly attribute USVString subject;
@@ -5630,7 +5630,7 @@ <h3>RDF Dataset Interfaces</h3>
56305630

56315631
<p>The <dfn>RdfLiteral</dfn> interface describes an <a>RDF Literal</a>.</p>
56325632

5633-
<pre class="idl changed" data-transform="unComment">
5633+
<pre class="idl changed">
56345634
[Constructor, Exposed=Window]
56355635
interface RdfLiteral {
56365636
readonly attribute USVString value;
@@ -5658,7 +5658,7 @@ <h3>The JsonLdOptions Type</h3>
56585658
<p>The <dfn>JsonLdOptions</dfn> type is used to pass various options to the
56595659
<a>JsonLdProcessor</a> methods.</p>
56605660

5661-
<pre class="idl" data-transform="unComment"><!--
5661+
<pre class="idl">
56625662
dictionary JsonLdOptions {
56635663
USVString? base;
56645664
boolean compactArrays = true;
@@ -5673,7 +5673,7 @@ <h3>The JsonLdOptions Type</h3>
56735673
boolean useNativeTypes = false;
56745674
boolean useRdfType = false;
56755675
};
5676-
--></pre>
5676+
</pre>
56775677

56785678
<dl data-sort>
56795679
<dt><dfn data-dfn-for="JsonLdOptions">base</dfn></dt>
@@ -5758,12 +5758,12 @@ <h3>LoadDocumentCallback</h3>
57585758
The callback returns a {{Promise}} resolving to a <a>RemoteDocument</a>.
57595759
On failure, the {{Promise}} is rejected with an appropriate error <a data-link-for="JsonLdError">code</a>.</p>
57605760

5761-
<pre class="idl" data-transform="unComment"><!--
5761+
<pre class="idl">
57625762
callback LoadDocumentCallback = Promise&lt;RemoteDocument> (
57635763
USVString url,
57645764
optional LoadDocumentOptions? options
57655765
);
5766-
--></pre>
5766+
</pre>
57675767

57685768
<dl>
57695769
<dt><dfn data-dfn-for="LoadDocumentCallback">url</dfn></dt>
@@ -5901,13 +5901,13 @@ <h3>LoadDocumentOptions</h3>
59015901
<p>The <dfn>LoadDocumentOptions</dfn> type is used to pass various options
59025902
to the <a>LoadDocumentCallback</a>.</p>
59035903

5904-
<pre class="idl" data-transform="unComment"><!--
5904+
<pre class="idl">
59055905
dictionary LoadDocumentOptions {
59065906
boolean extractAllScripts = false;
59075907
USVString profile = null;
59085908
(USVString or sequence&lt;USVString>) requestProfile = null;
59095909
};
5910-
--></pre>
5910+
</pre>
59115911

59125912
<dl>
59135913
<dt><dfn data-dfn-for="LoadDocumentOptions">extractAllScripts</dfn></dt>
@@ -5930,15 +5930,15 @@ <h3>RemoteDocument</h3>
59305930
<p>The <dfn>RemoteDocument</dfn> type is used by a <a>LoadDocumentCallback</a>
59315931
to return information about a remote document or context.</p>
59325932

5933-
<pre class="idl" data-transform="unComment"><!--
5933+
<pre class="idl">
59345934
dictionary RemoteDocument {
59355935
USVString contextUrl = null;
59365936
USVString documentUrl;
59375937
any document;
59385938
USVString contentType;
59395939
USVString profile = null;
59405940
};
5941-
--></pre>
5941+
</pre>
59425942

59435943
<dl>
59445944
<dt><dfn data-dfn-for="RemoteDocument">contextUrl</dfn></dt>
@@ -5977,12 +5977,12 @@ <h4>JsonLdError</h4>
59775977

59785978
<p>The <dfn>JsonLdError</dfn> type is used to report processing errors.</p>
59795979

5980-
<pre class="idl" data-transform="unComment"><!--
5980+
<pre class="idl">
59815981
dictionary JsonLdError {
59825982
JsonLdErrorCode code;
59835983
USVString? message = null;
59845984
};
5985-
--></pre>
5985+
</pre>
59865986

59875987
<dl>
59885988
<dt><dfn data-dfn-for="JsonLdError">code</dfn></dt>
@@ -5998,7 +5998,7 @@ <h4>JsonLdError</h4>
59985998
<h4>JsonLdErrorCode</h4>
59995999
<p>The <dfn>JsonLdErrorCode</dfn> represents the collection of valid JSON-LD error codes.</p>
60006000

6001-
<pre class="idl" data-transform="unComment"><!--
6001+
<pre class="idl">
60026002
enum JsonLdErrorCode {
60036003
"colliding keywords",
60046004
"conflicting indexes",
@@ -6046,7 +6046,7 @@ <h4>JsonLdErrorCode</h4>
60466046
"protected term redefinition",
60476047
"context overflow"
60486048
};
6049-
--></pre>
6049+
</pre>
60506050

60516051
<dl data-dfn-for="JsonLdErrorCode" data-sort>
60526052
<dt><dfn>colliding keywords</dfn></dt>

0 commit comments

Comments
 (0)