summaryrefslogtreecommitdiff
path: root/api-docs/cppdocs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2025-10-28 18:39:11 -0400
committerJordan <github@psifertex.com>2025-11-06 10:32:46 -0500
commit5ed12c4574ea5c3cb82aa6c7f77e3003d49442b2 (patch)
treea728fcfb04498c39dfc3b768799cc87666c5b292 /api-docs/cppdocs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js
parent5a6b4fcc110effbb3e87c85d3d22876697b5b9e9 (diff)
simplify CSS, light/dark switch on auto, fix RST tables to be html
Diffstat (limited to 'api-docs/cppdocs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js')
-rw-r--r--api-docs/cppdocs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/api-docs/cppdocs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js b/api-docs/cppdocs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js
deleted file mode 100644
index 1c4c227e..00000000
--- a/api-docs/cppdocs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js
+++ /dev/null
@@ -1,32 +0,0 @@
-// SPDX-License-Identifier: MIT
-/**
-
-Doxygen Awesome
-https://github.com/jothepro/doxygen-awesome-css
-
-Copyright (c) 2022 - 2025 jothepro
-
-*/
-
-class DoxygenAwesomeParagraphLink {
- // Icon from https://fonts.google.com/icons
- // Licensed under the Apache 2.0 license:
- // https://www.apache.org/licenses/LICENSE-2.0.html
- 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>`
- static title = "Permanent Link"
- static init() {
- $(function() {
- $(document).ready(function() {
- document.querySelectorAll(".contents a.anchor[id], .contents .groupheader > a[id]").forEach((node) => {
- let anchorlink = document.createElement("a")
- anchorlink.setAttribute("href", `#${node.getAttribute("id")}`)
- anchorlink.setAttribute("title", DoxygenAwesomeParagraphLink.title)
- anchorlink.classList.add("anchorlink")
- node.classList.add("anchor")
- anchorlink.innerHTML = DoxygenAwesomeParagraphLink.icon
- node.parentElement.appendChild(anchorlink)
- })
- })
- })
- }
-}