@adminforth/markdown 1.7.0 → 1.8.0
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 +11 -1
- package/index.ts +12 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -175,6 +175,16 @@ export default class MarkdownPlugin extends AdminForthPlugin {
|
|
|
175
175
|
existing.title = next.title;
|
|
176
176
|
}
|
|
177
177
|
};
|
|
178
|
+
const normalizeAttachmentTitleForDb = (title) => {
|
|
179
|
+
// we can llow to use [xx] in titles, for some meta classes - so they will nto go to attachment titles, but will be available in the ending markdown
|
|
180
|
+
if (title === null) {
|
|
181
|
+
return null;
|
|
182
|
+
}
|
|
183
|
+
const cleaned = title
|
|
184
|
+
.replace(/\s*(?:\([^()]*\)|\[[^\[\]]*\])\s*$/, '')
|
|
185
|
+
.trim();
|
|
186
|
+
return cleaned || null;
|
|
187
|
+
};
|
|
178
188
|
function getAttachmentMetas(markdown) {
|
|
179
189
|
var _a, _b, _c, _d, _e, _f;
|
|
180
190
|
if (!markdown) {
|
|
@@ -188,7 +198,7 @@ export default class MarkdownPlugin extends AdminForthPlugin {
|
|
|
188
198
|
for (const match of markdown.matchAll(imageRegex)) {
|
|
189
199
|
const altRaw = (_a = match[1]) !== null && _a !== void 0 ? _a : '';
|
|
190
200
|
const srcRaw = match[2];
|
|
191
|
-
const titleRaw = (_c = ((_b = match[3]) !== null && _b !== void 0 ? _b : match[4])) !== null && _c !== void 0 ? _c : null;
|
|
201
|
+
const titleRaw = normalizeAttachmentTitleForDb((_c = ((_b = match[3]) !== null && _b !== void 0 ? _b : match[4])) !== null && _c !== void 0 ? _c : null);
|
|
192
202
|
const key = getKeyFromTrackedUrl(srcRaw);
|
|
193
203
|
if (!key) {
|
|
194
204
|
continue;
|
package/index.ts
CHANGED
|
@@ -194,6 +194,17 @@ export default class MarkdownPlugin extends AdminForthPlugin {
|
|
|
194
194
|
}
|
|
195
195
|
};
|
|
196
196
|
|
|
197
|
+
const normalizeAttachmentTitleForDb = (title: string | null): string | null => {
|
|
198
|
+
// we can llow to use [xx] in titles, for some meta classes - so they will nto go to attachment titles, but will be available in the ending markdown
|
|
199
|
+
if (title === null) {
|
|
200
|
+
return null;
|
|
201
|
+
}
|
|
202
|
+
const cleaned = title
|
|
203
|
+
.replace(/\s*(?:\([^()]*\)|\[[^\[\]]*\])\s*$/, '')
|
|
204
|
+
.trim();
|
|
205
|
+
return cleaned || null;
|
|
206
|
+
};
|
|
207
|
+
|
|
197
208
|
function getAttachmentMetas(markdown: string): AttachmentMeta[] {
|
|
198
209
|
if (!markdown) {
|
|
199
210
|
return [];
|
|
@@ -209,7 +220,7 @@ export default class MarkdownPlugin extends AdminForthPlugin {
|
|
|
209
220
|
for (const match of markdown.matchAll(imageRegex)) {
|
|
210
221
|
const altRaw = match[1] ?? '';
|
|
211
222
|
const srcRaw = match[2];
|
|
212
|
-
const titleRaw = (match[3] ?? match[4]) ?? null;
|
|
223
|
+
const titleRaw = normalizeAttachmentTitleForDb((match[3] ?? match[4]) ?? null);
|
|
213
224
|
|
|
214
225
|
const key = getKeyFromTrackedUrl(srcRaw);
|
|
215
226
|
if (!key) {
|