@mdfriday/foundry 26.5.3 → 26.5.4

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.
@@ -250,6 +250,12 @@ export declare class KnowledgeBase {
250
250
  private generateIndex;
251
251
  private generateGlossary;
252
252
  private sanitizeFilename;
253
+ /**
254
+ * Produces an Obsidian-compatible wikilink for an entity or concept name.
255
+ * Format: [[slug|Display Name]] so the file (named by slug) is found correctly
256
+ * while the display text remains human-readable.
257
+ */
258
+ private wikiLink;
253
259
  /**
254
260
  * Returns the wikilink name for a source path: relative path from content root, no .md extension.
255
261
  *
@@ -12,6 +12,7 @@ interface AnnotationOptions {
12
12
  markFirstOccurrenceOnly?: boolean;
13
13
  contextAware?: boolean;
14
14
  differentMarkers?: boolean;
15
+ sanitizeName?: (name: string) => string;
15
16
  }
16
17
  export declare class ContentAnnotator {
17
18
  private options;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdfriday/foundry",
3
- "version": "26.5.3",
3
+ "version": "26.5.4",
4
4
  "description": "The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",