Skip to content

Commit 0024435

Browse files
committed
fix(core): correct markdown listItem boundary type
synth-md uses 'listItem' not 'list' for list items. Also removed 'table' as it's not yet supported by synth-md.
1 parent a8136ff commit 0024435

File tree

3 files changed

+33
-47
lines changed

3 files changed

+33
-47
lines changed

.claude/settings.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

.mcp.json

Lines changed: 31 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,32 @@
11
{
2-
"mcpServers": {
3-
"context7": {
4-
"type": "http",
5-
"url": "https://mcp.context7.com/mcp"
6-
},
7-
"grep": {
8-
"type": "http",
9-
"url": "https://mcp.grep.app"
10-
},
11-
"coderag": {
12-
"type": "stdio",
13-
"command": "npx",
14-
"args": ["-y", "@sylphx/coderag-mcp"],
15-
"env": {
16-
"OPENAI_API_KEY": "",
17-
"CODEBASE_ROOT": "",
18-
"INDEX_PATH": ".coderag"
19-
}
20-
},
21-
"playwright": {
22-
"type": "stdio",
23-
"command": "npx",
24-
"args": ["@playwright/mcp@latest"]
25-
}
26-
}
27-
}
2+
"mcpServers": {
3+
"context7": {
4+
"type": "http",
5+
"url": "https://mcp.context7.com/mcp"
6+
},
7+
"grep": {
8+
"type": "http",
9+
"url": "https://mcp.grep.app"
10+
},
11+
"coderag": {
12+
"type": "stdio",
13+
"command": "npx",
14+
"args": [
15+
"-y",
16+
"@sylphx/coderag-mcp"
17+
],
18+
"env": {
19+
"OPENAI_API_KEY": "",
20+
"CODEBASE_ROOT": "",
21+
"INDEX_PATH": ".coderag"
22+
}
23+
},
24+
"playwright": {
25+
"type": "stdio",
26+
"command": "npx",
27+
"args": [
28+
"@playwright/mcp@latest"
29+
]
30+
}
31+
}
32+
}

packages/core/src/language-config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ export const LANGUAGE_REGISTRY: Record<string, LanguageConfig> = {
189189
'paragraph',
190190
'code', // Code blocks
191191
'blockquote',
192-
'list',
193-
'table',
192+
'listItem', // synth-md uses listItem, not list
194193
'thematicBreak',
194+
// Note: table not yet supported by synth-md
195195
],
196196
embedded: [
197197
{

0 commit comments

Comments
 (0)