@arsedizioni/ars-utils 21.0.10 → 21.0.12
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/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +2 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
- package/types/arsedizioni-ars-utils-tinymce.d.ts +15 -15
|
@@ -2127,6 +2127,7 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2127
2127
|
score -= 5;
|
|
2128
2128
|
else if (score > 3)
|
|
2129
2129
|
score -= 3;
|
|
2130
|
+
console.log(score);
|
|
2130
2131
|
anchors.push({
|
|
2131
2132
|
text: a.text,
|
|
2132
2133
|
title: a.title,
|
|
@@ -2134,6 +2135,7 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2134
2135
|
uri: a.uri,
|
|
2135
2136
|
veryRelevant: score > 0.6
|
|
2136
2137
|
});
|
|
2138
|
+
console.log(JSON.stringify(anchors));
|
|
2137
2139
|
});
|
|
2138
2140
|
n.anchors = anchors;
|
|
2139
2141
|
}
|