Skip to content

Commit

Permalink
Fix up static CR with more VAR block (and CSS) fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
msporny committed Mar 16, 2024
1 parent 9743fdc commit eaa308e
Showing 1 changed file with 43 additions and 27 deletions.
70 changes: 43 additions & 27 deletions CR/2024-03-28/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,30 +110,46 @@

<style>

pre .highlight {
font-weight: bold;
color: green;
}
pre .comment {
font-weight: bold;
color: Gray;
}
.color-text {
font-weight: bold;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
ol.algorithm {
counter-reset: numsection;
list-style-type: none;
}
ol.algorithm li {
margin: 0.5em 0;
}
ol.algorithm li:before {
font-weight: bold;
counter-increment: numsection;
content: counters(numsection, ".") ") ";
}
code {
color: rgb(199, 73, 0);
font-weight: bold;
}
pre {
overflow-x: auto;
white-space: pre-wrap;
}
pre .highlight {
font-weight: bold;
color: Green;
}
pre .subject {
font-weight: bold;
color: RoyalBlue;
}
pre .property {
font-weight: bold;
color: DarkGoldenrod;
}
pre .comment {
font-weight: bold;
color: SteelBlue;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
ol.algorithm {
counter-reset: numsection;
list-style-type: none;
}
ol.algorithm li {
margin: 0.5em 0;
}
ol.algorithm li:before {
font-weight: bold;
counter-increment: numsection;
content: counters(numsection, ".") ") ";
}

</style>

Expand Down Expand Up @@ -1052,7 +1068,7 @@ <h1 id="title" class="title">Data Integrity BBS Cryptosuites v1.0</h1> <h2 id="s
</li>
<li>
Run the RDF Dataset Canonicalization Algorithm [<cite><a class="bibref" data-link-type="biblio" href="#bib-rdf-canon" title="RDF Dataset Canonicalization">RDF-CANON</a></cite>] on
the joined <var>combinedGroup.deskolemizedNQuads</var>, passing any custom
the joined <var>combinedGroup</var>.<var>deskolemizedNQuads</var>, passing any custom
options, and get the canonical bnode identifier map, <var>canonicalIdMap</var>.
Note: This map includes the canonical blank node identifiers that a verifier
will produce when they canonicalize the reveal document.
Expand Down Expand Up @@ -1507,8 +1523,8 @@ <h1 id="title" class="title">Data Integrity BBS Cryptosuites v1.0</h1> <h2 id="s
raised.
</li>
<li>
Set <var>proofConfig</var>.<var>@context</var> to
<var>unsecuredDocument</var>.<var>@context</var>.
Set <var>proofConfig</var>.|@context| to
<var>unsecuredDocument</var>.|@context|.
</li>
<li>
Let <var>canonicalProofConfig</var> be the result of applying the Universal RDF Dataset
Expand Down

0 comments on commit eaa308e

Please sign in to comment.