anchors.html 215 B

1234567891011
  1. <script>
  2. const initAnchors = () => {
  3. if (window.anchors === undefined) {
  4. setTimeout(initAnchors, 250)
  5. return
  6. }
  7. anchors.add("main h1, main h2, main h3, main h4")
  8. }
  9. initFunction(initAnchors);
  10. </script>