gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
docs/config/doxygen-awesome-theme/doxygen-awesome-paragraph-link.js
1 // SPDX-License-Identifier: MIT
2 /**
3
4 Doxygen Awesome
5 https://github.com/jothepro/doxygen-awesome-css
6
7 Copyright (c) 2022 - 2025 jothepro
8
9 */
10
11 class DoxygenAwesomeParagraphLink {
12 // Icon from https://fonts.google.com/icons
13 // Licensed under the Apache 2.0 license:
14 // https://www.apache.org/licenses/LICENSE-2.0.html
15 static icon = `<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 0 24 24" width="20px"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z"/></svg>`
16 static title = "Permanent Link"
17 static init() {
18 $(function() {
19 $(document).ready(function() {
20 document.querySelectorAll(".contents a.anchor[id], .contents .groupheader > a[id]").forEach((node) => {
21 let anchorlink = document.createElement("a")
22 anchorlink.setAttribute("href", `#${node.getAttribute("id")}`)
23 anchorlink.setAttribute("title", DoxygenAwesomeParagraphLink.title)
24 anchorlink.classList.add("anchorlink")
25 node.classList.add("anchor")
26 anchorlink.innerHTML = DoxygenAwesomeParagraphLink.icon
27 node.parentElement.appendChild(anchorlink)
28 })
29 })
30 })
31 }
32 }
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.