spec-up-t 0.11.20 → 0.11.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ function copyAnchorToCliboard() {
8
8
  // add click event to all .toc-anchor via event delegation
9
9
  document.addEventListener('click', function (e) {
10
10
  if (e.target.classList.contains('toc-anchor')) {
11
- e.preventDefault();
11
+ // e.preventDefault(); // De-activated, since currently We explicitly want to keep the default behavior of the anchor link
12
12
  const anchorText = e.target.href;
13
13
  navigator.clipboard.writeText(anchorText).then(() => {
14
14
  console.log('Anchor copied to clipboard');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-up-t",
3
- "version": "0.11.20",
3
+ "version": "0.11.21",
4
4
  "description": "Technical specification drafting tool that generates rich specification documents from markdown. Forked from https://github.com/decentralized-identity/spec-up by Daniel Buchner (https://github.com/csuwildcat)",
5
5
  "main": "./index",
6
6
  "repository": {