Skip to content

Commit

Permalink
shift to using local docs/css and docs/js in the layout, to make file…
Browse files Browse the repository at this point in the history
…s location-independant
  • Loading branch information
nickzoic committed Apr 4, 2024
1 parent 6534c3e commit 9eaa987
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>{{ page.title }}</title>
<link rel="stylesheet" href="{{ site.url }}/css/vanilla.css">
<link rel="stylesheet" href="{{ site.url }}/css/custom.css">
<script src="{{ site.url }}/js/toc.js"></script>
<link rel="stylesheet" href="{{ site.url }}{{ site.baseurl }}/css/vanilla.css">
<link rel="stylesheet" href="{{ site.url }}{{ site.baseurl }}/css/custom.css">
<script src="{{ site.url }}{{ site.baseurl }}/js/toc.js"></script>
</head>
<body>
<div id="toc" class="sidebar">
Expand Down
2 changes: 1 addition & 1 deletion docs/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dt {
font-weight: bold;
}

table code {
table code, table pre {
border: none;
background: none;
}
Expand Down

0 comments on commit 9eaa987

Please sign in to comment.