feat(blog): switch blog content rendering from Markdown to HTML#1
Merged
Conversation
Switch the blog_articles.content rendering from renderMarkdown to renderHtml so interactive HTML elements authored in the Directus WYSIWYG editor render correctly. Adds a renderHtml pipeline that parses HTML via rehype-parse with a permissive blog-specific sanitization schema. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The normalize module now imports renderHtml instead of renderMarkdown for blog article content processing. Update the vi.mock, import, and all references in the test to match. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
renderMarkdowntorenderHtmlso interactive HTML elements (iframes, styled content, etc.) authored in the Directus WYSIWYG editor render correctly instead of being treated as raw Markdown.rehype-parsedependency and a newrenderHtmlpipeline that parses HTML fragments directly via rehype-parse with a permissive blog-specific sanitization schema (blogHtmlSanitizationSchema) that allows iframes, mark, aside, style attributes, and additional img attributes.normalize-locations.ts) is unchanged — FAQ answers and long descriptions continue to use Markdown rendering.Changed files
package.json/pnpm-lock.yaml— addedrehype-parsesrc/lib/directus/markdown.ts— addedrehypeParseimport,blogHtmlSanitizationSchema,htmlProcessor, and exportedrenderHtmlfunctionsrc/lib/directus/normalize.ts— switched blog article rendering fromrenderMarkdowntorenderHtmlsrc/lib/directus/types.ts— added// HTMLcomment toDirectusBlogArticle.contentsrc/lib/content/types.ts— added// HTML (CMS) or Markdown (local)comment toBlogPost.contentTest plan
pnpm buildsucceeds with no new type errors<script>and<style>tags are stripped from blog HTML content by the sanitization schema🤖 Generated with Claude Code