Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
e0d2cc2
BlockRenderer, postContent: parse markdown tables from inline message…
jamesacklin May 13, 2026
4076a78
BlockRenderer: table aesthetics
jamesacklin May 13, 2026
15d325f
BlockRenderer: reset measurement state when block changes
jamesacklin May 13, 2026
2fadcad
logic/markdown: preserve rows that omit a leading pipe
jamesacklin May 13, 2026
4b4f9a4
logic/markdown: define and parse GroupMentions, replace
jamesacklin May 13, 2026
705fbd1
logic/markdown: add groupMentionPlugin
jamesacklin May 13, 2026
8593700
prettier
jamesacklin May 13, 2026
5aecd45
api: move markdown from shared into api
jamesacklin May 13, 2026
58e06e5
prettier
jamesacklin May 13, 2026
443e4cc
api: move markdown from lib to client; avoids circular imports
jamesacklin May 14, 2026
537bf87
extractTables: prevent splitting table too early
jamesacklin May 14, 2026
a216e30
groupMentionPlugin: catch |@all| valid table syntax
jamesacklin May 14, 2026
7051479
extractTables: add explicit default, fix comments
jamesacklin May 14, 2026
57c00ae
api/client: show first cell of table in notification preview
jamesacklin May 14, 2026
817fbb0
extractTables: escape every `|` in the output
jamesacklin May 14, 2026
aa1db9e
extractTables: cheap escape for paragraphs wthout |
jamesacklin May 14, 2026
947933e
Merge branch 'develop' into jamesacklin/md-table-blocks
jamesacklin May 14, 2026
c3b01ba
extractTables.test.ts: prettier
jamesacklin May 14, 2026
44aa2c7
Merge branch 'jamesacklin/md-table-blocks' of https://github.com/tlon…
jamesacklin May 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
"./client": "./src/client/index.ts",
"./client/*": "./src/client/*.ts",
"./dev/*": "./src/dev/*.ts",
"./client/markdown": "./src/client/markdown/index.ts",
"./client/markdown/*": "./src/client/markdown/*.ts",
"./lib/*": "./src/lib/*.ts",
"./urbit": "./src/urbit/index.ts",
"./urbit/*": "./src/urbit/*.ts",
Expand All @@ -46,6 +48,7 @@
"dependencies": {
"@aws-sdk/client-s3": "^3.190.0",
"@aws-sdk/s3-request-presigner": "^3.190.0",
"@types/mdast": "^4.0.0",
"@urbit/aura": "^3.0.0",
"@urbit/nockjs": "^1.6.0",
"any-ascii": "^0.3.1",
Expand All @@ -56,7 +59,13 @@
"exponential-backoff": "^3.1.1",
"libphonenumber-js": "^1.11.18",
"lodash": "^4.17.21",
"mdast-util-gfm": "^3.0.0",
"mdast-util-to-markdown": "^2.1.2",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"sorted-btree": "^1.8.1",
"unified": "^11.0.0",
"validator": "^13.7.0",
"zod": "^3.25.76"
}
Expand Down
Loading
Loading