feat: add GFM tables, strikethrough, task lists to MarkdownRenderer (#504)#629
Open
omonxooo-commits wants to merge 2 commits into
Open
Conversation
- Add createBatcher utility (src/lib/api/batch.ts) that collects concurrent requests within a debounce window and sends them as a single batched POST, reducing network round-trips - Add POST /api/help edge route that accepts BatchRequest[] and returns BatchResponse<HelpArticle>[] in one response; GET convenience endpoint also included - Add useHelpDocumentation hook backed by a shared module-level batcher so multiple components mounting simultaneously share one network call - Add HelpDocumentation component with collapsible articles, skeleton loading, error/retry UI, accessible markup, lucide icons, dark mode - Add 11 unit tests covering batcher and hook (all passing) Closes rinafcode#496
…inafcode#504) - Tables: pipe-style GFM tables with thead/tbody - Strikethrough: ~~text~~ → <del>text</del> - Task lists: - [ ] / - [x] → checkbox list items - Update DOMPurify allowlist to include new tags/attrs - Add 8 new tests (29 total, all passing) Closes rinafcode#504
|
@omonxooo-commits Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds GitHub Flavored Markdown (GFM) features to the existing
MarkdownRendereras requested in issue #504.Changes
src/components/shared/MarkdownRenderer.tsx<table><thead><tbody>~~text~~→<del>text</del>- [ ] todo/- [x] done→ checkbox list items with<ul class="task-list">del,table,thead,tbody,tr,th,td,inputand their attributessrc/components/shared/MarkdownRenderer.test.tsTesting
No regressions — all 21 existing tests still pass.
Closes #504