markstream-angular 0.0.2-beta.8 → 0.0.2-beta.9
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.
package/dist/index.js
CHANGED
|
@@ -2090,6 +2090,9 @@ let Qt = class {
|
|
|
2090
2090
|
get href() {
|
|
2091
2091
|
return `#fnref--${this.id}`;
|
|
2092
2092
|
}
|
|
2093
|
+
get referenceId() {
|
|
2094
|
+
return `fnref-${this.id}`;
|
|
2095
|
+
}
|
|
2093
2096
|
};
|
|
2094
2097
|
Fo([
|
|
2095
2098
|
c({ required: !0 })
|
|
@@ -2099,7 +2102,7 @@ Qt = Fo([
|
|
|
2099
2102
|
selector: "markstream-angular-footnote-reference-node",
|
|
2100
2103
|
standalone: !0,
|
|
2101
2104
|
template: `
|
|
2102
|
-
<sup class="markstream-nested-footnote-ref">
|
|
2105
|
+
<sup [attr.id]="referenceId" class="markstream-nested-footnote-ref">
|
|
2103
2106
|
<a [attr.href]="href">[{{ id }}]</a>
|
|
2104
2107
|
</sup>
|
|
2105
2108
|
`,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markstream-angular",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.2-beta.
|
|
4
|
+
"version": "0.0.2-beta.9",
|
|
5
5
|
"description": "Experimental Angular Markdown renderer for Markstream, built on stream-markdown AST and a stable HTML baseline renderer.",
|
|
6
6
|
"author": "Simon He",
|
|
7
7
|
"license": "MIT",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@floating-ui/dom": "^1.7.6",
|
|
71
|
-
"stream-markdown-parser": "0.0.
|
|
71
|
+
"stream-markdown-parser": "0.0.92"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@types/node": "^18.19.130",
|