feat(mdx-storage): Phase2 Task2.5 blockquote 변환 구현#776
Merged
Conversation
a99e3ce to
be522ef
Compare
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- _is_blockquote_line false positive 수정: `> ` 또는 bare `>` 만 매칭하도록 변경 - `>>>` (shell output), `>>text` 등의 잘못된 매칭을 방지합니다 - 테스트 5건 추가 (parser 2, emitter 3): multiline, mixed document, empty body, false positive 검증 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
be522ef to
b0b3ec1
Compare
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
>blockquote 구문을<blockquote><p>...</p></blockquote>XHTML로 변환하는 파서/이미터를 구현합니다_is_blockquote_line매칭을>또는 bare>로 제한하여>>>(shell output) 등의 false positive를 방지합니다>줄의 paragraph 합치기, 빈 줄(>)을 통한 paragraph 분리, 인라인 마크업 변환을 지원합니다Test plan
>>>false positive 방지 검증🤖 Generated with Claude Code
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com