Skip to content

Commit

Permalink
deploy: c751e94
Browse files Browse the repository at this point in the history
  • Loading branch information
pchampin committed Aug 31, 2023
1 parent aa86232 commit 6912b77
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 12 deletions.
1 change: 1 addition & 0 deletions css/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
:root {
/* Browser default font-size is 16px, this way 1 rem = 10px */
font-size: 62.5%;
color-scheme: var(--color-scheme);
}

html {
Expand Down
8 changes: 0 additions & 8 deletions css/print.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@
overflow-y: initial;
}

code {
background-color: #666666;
border-radius: 5px;

/* Force background to be printed in Chrome */
-webkit-print-color-adjust: exact;
}

pre > .buttons {
z-index: 2;
}
Expand Down
10 changes: 10 additions & 0 deletions css/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@
--searchresults-border-color: #888;
--searchresults-li-bg: #252932;
--search-mark-bg: #e3b171;

--color-scheme: dark;
}

.coal {
Expand Down Expand Up @@ -90,6 +92,8 @@
--searchresults-border-color: #98a3ad;
--searchresults-li-bg: #2b2b2f;
--search-mark-bg: #355c7d;

--color-scheme: dark;
}

.light {
Expand Down Expand Up @@ -130,6 +134,8 @@
--searchresults-border-color: #888;
--searchresults-li-bg: #e4f2fe;
--search-mark-bg: #a2cff5;

--color-scheme: light;
}

.navy {
Expand Down Expand Up @@ -170,6 +176,8 @@
--searchresults-border-color: #5c5c68;
--searchresults-li-bg: #242430;
--search-mark-bg: #a2cff5;

--color-scheme: dark;
}

.rust {
Expand Down Expand Up @@ -210,6 +218,8 @@
--searchresults-border-color: #888;
--searchresults-li-bg: #dec2a2;
--search-mark-bg: #e69f67;

--color-scheme: light;
}

@media (prefers-color-scheme: dark) {
Expand Down
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ <h1 id="sophia"><a class="header" href="#sophia">Sophia</a></h1>
<li><a href="https://crates.io/crates/sophia_xml"><code>sophia_xml</code></a> provides parsers and serializers for RDF/XML.</li>
<li><a href="https://crates.io/crates/sophia_jsonld"><code>sophia_jsonld</code></a> provides preliminary support for JSON-LD.</li>
<li><a href="https://crates.io/crates/sophia_c14n"><code>sophia_c14n</code></a> implements <a href="https://www.w3.org/TR/rdf-canon/">RDF canonicalization</a>.</li>
<li>[<code>sophia_resource</code>] provides a resource-centric API.</li>
<li><a href="https://crates.io/crates/sophia_resource"><code>sophia_resource</code></a> provides a resource-centric API.</li>
<li><a href="https://crates.io/crates/sophia_rio"><code>sophia_rio</code></a> is a lower-level crate, used by the ones above. </li>
</ul>
<p>and finally:</p>
Expand Down Expand Up @@ -229,6 +229,11 @@ <h2 id="citation"><a class="header" href="#citation">Citation</a></h2>
url = {https://www2020devtrack.github.io/site/schedule}
}
</code></pre>
<h2 id="third-party-crates"><a class="header" href="#third-party-crates">Third-party crates</a></h2>
<p>The following third-party crates are using or extending Sophia</p>
<ul>
<li><a href="https://crates.io/crates/hdt"><code>hdt</code></a> provides an implementation of Sophia's traits based on the <a href="https://www.rdfhdt.org/">HDT</a> format.</li>
</ul>
<h2 id="history"><a class="header" href="#history">History</a></h2>
<p>An outdated comparison of Sophia with other RDF libraries is still available
<a href="https://github.com/pchampin/sophia_benchmark/blob/master/benchmark_results.ipynb">here</a>.</p>
Expand Down
7 changes: 6 additions & 1 deletion print.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ <h1 id="sophia"><a class="header" href="#sophia">Sophia</a></h1>
<li><a href="https://crates.io/crates/sophia_xml"><code>sophia_xml</code></a> provides parsers and serializers for RDF/XML.</li>
<li><a href="https://crates.io/crates/sophia_jsonld"><code>sophia_jsonld</code></a> provides preliminary support for JSON-LD.</li>
<li><a href="https://crates.io/crates/sophia_c14n"><code>sophia_c14n</code></a> implements <a href="https://www.w3.org/TR/rdf-canon/">RDF canonicalization</a>.</li>
<li>[<code>sophia_resource</code>] provides a resource-centric API.</li>
<li><a href="https://crates.io/crates/sophia_resource"><code>sophia_resource</code></a> provides a resource-centric API.</li>
<li><a href="https://crates.io/crates/sophia_rio"><code>sophia_rio</code></a> is a lower-level crate, used by the ones above. </li>
</ul>
<p>and finally:</p>
Expand Down Expand Up @@ -230,6 +230,11 @@ <h2 id="citation"><a class="header" href="#citation">Citation</a></h2>
url = {https://www2020devtrack.github.io/site/schedule}
}
</code></pre>
<h2 id="third-party-crates"><a class="header" href="#third-party-crates">Third-party crates</a></h2>
<p>The following third-party crates are using or extending Sophia</p>
<ul>
<li><a href="https://crates.io/crates/hdt"><code>hdt</code></a> provides an implementation of Sophia's traits based on the <a href="https://www.rdfhdt.org/">HDT</a> format.</li>
</ul>
<h2 id="history"><a class="header" href="#history">History</a></h2>
<p>An outdated comparison of Sophia with other RDF libraries is still available
<a href="https://github.com/pchampin/sophia_benchmark/blob/master/benchmark_results.ipynb">here</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit 6912b77

Please sign in to comment.