typebulb 0.15.2 → 0.15.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.
- package/README.md +1 -1
- package/dist/agents/claude/client.js +172 -170
- package/dist/agents/claude/styles.css +17 -4
- package/dist/format/parse.d.ts +10 -0
- package/dist/format/parse.d.ts.map +1 -1
- package/dist/format/parse.js +47 -4
- package/dist/format/parse.js.map +1 -1
- package/dist/index.js +141 -141
- package/dist/render.d.ts +4 -0
- package/dist/render.js +80 -80
- package/dist/servers.js +85 -85
- package/package.json +1 -1
package/dist/render.d.ts
CHANGED
|
@@ -40,3 +40,7 @@ export declare function slugifyBulbName(source: string): string
|
|
|
40
40
|
|
|
41
41
|
/** The source with its leading `---` frontmatter block stripped. */
|
|
42
42
|
export declare function stripFrontmatter(source: string): string
|
|
43
|
+
|
|
44
|
+
/** Structural problems a bulb's Markdown has (chiefly an unterminated fence that swallowed a block);
|
|
45
|
+
* one message per problem, empty when well-formed. */
|
|
46
|
+
export declare function validateBulbStructure(content: string): string[]
|