-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Update browser reqs in installing.md table"
This reverts commit 3a8d11f.
- Loading branch information
1 parent
3a8d11f
commit 8db8a36
Showing
3 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
title: Changelog | ||
description: All notable changes to this project will be documented in this page. | ||
--- | ||
|
||
<h1>Changelog</h1> | ||
|
||
<div class="container"> | ||
<p>All notable changes to this project will be documented in this page.</p> | ||
|
||
{{< specifics/changelog >}} | ||
</div> | ||
|
||
<script> | ||
let params = new URLSearchParams(location.search) | ||
if (params.has("versionname")) { | ||
let ver = params.get("versionname").replace("-notif", "") | ||
if (!ver.startsWith("v")) ver = "v" + ver | ||
if (document.getElementById(ver)) $(() => { | ||
document.getElementById(ver).scrollIntoView() | ||
}) | ||
} | ||
</script> | ||
|
||
<style> | ||
h2 { | ||
position: relative; | ||
} | ||
|
||
h2 .anchor { | ||
position: absolute; | ||
left: -1.5rem; | ||
visibility: hidden; | ||
padding-right: 0.67rem; | ||
} | ||
|
||
h2:hover .anchor { | ||
visibility: unset | ||
} | ||
|
||
h2 .anchor:hover { | ||
visibility: unset; | ||
text-decoration: none; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters