-
Notifications
You must be signed in to change notification settings - Fork 1
mdx(ko): 이미지 태그에 width 속성을 적용합니다 #531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
keIIy-kim
approved these changes
Jan 23, 2026
baa3216 to
adf81d3
Compare
jk-kim0
added a commit
that referenced
this pull request
Jan 23, 2026
- #531 한국어 변경사항(이미지 태그 width 속성)을 영어/일본어에 동기화합니다. - Markdown 이미지 문법을 HTML img 태그로 변환하여 width 속성을 명시합니다. - 기존 영어/일본어 alt 텍스트를 보존합니다. - restore_alt_from_diff.py: git diff에서 기존 alt 텍스트를 복원하는 도구 추가 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2 tasks
jk-kim0
added a commit
that referenced
this pull request
Jan 23, 2026
- #531 한국어 변경사항(이미지 태그 width 속성)을 영어/일본어에 동기화합니다. - Markdown 이미지 문법을 HTML img 태그로 변환하여 width 속성을 명시합니다. - 기존 영어/일본어 alt 텍스트를 보존합니다. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
3 tasks
jk-kim0
added a commit
that referenced
this pull request
Jan 24, 2026
## Summary 한국어 MDX 문서의 구조적 변경사항을 영어/일본어 문서에 동기화하는 도구를 추가합니다. ### 추가된 도구 1. **sync_ko_commit.py**: 한국어 커밋의 변경사항을 영어/일본어 파일에 덮어쓰기 2. **restore_alt_from_diff.py**: git diff에서 기존 영어/일본어 alt 텍스트 복원 ### 워크플로우 ``` 한국어 커밋 분석 → 영어/일본어에 덮어쓰기 → git diff로 번역 대상 식별 → 기존 번역 복원 → LLM 번역 ``` ### 사용 예시 ```bash cd confluence-mdx # 1. 한국어 커밋 변경을 en/ja에 동기화 python3 bin/sync_ko_commit.py ae93da7 # 2. 기존 alt 텍스트 복원 python3 bin/restore_alt_from_diff.py --apply # 3. 검증 python3 bin/mdx_to_skeleton.py --recursive --max-diff=10 ``` ### 문서 - Claude skill 추가: `.claude/skills/sync-ko-to-en-ja.md` ## Related tickets & links - #531 (한국어 이미지 태그 width 적용) - #537 (영어/일본어 이미지 태그 동기화) ## Added/updated tests? - [ ] Yes - [x] No, and this is why: CLI 도구로 수동 검증 완료 - [ ] I need help with writing tests 🤖 Generated with [Claude Code](https://claude.ai/code) --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
jk-kim0
added a commit
that referenced
this pull request
Jan 24, 2026
## Summary - #531 한국어 변경사항(이미지 태그 width 속성)을 영어/일본어에 동기화합니다. - Markdown 이미지 문법(``)을 HTML `<img>` 태그로 변환하여 width 속성을 명시합니다. - 기존 영어/일본어 alt 텍스트를 보존합니다. ## 변경 내용 - 영어(en): 216개 파일 - 일본어(ja): 216개 파일 ## 변환 예시 **영어**: ```diff - +<img src="/administrator-manual/screenshot.png" alt="Admin page entry point in the GNB" width="762" /> ``` **일본어**: ```diff - +<img src="/administrator-manual/screenshot.png" alt="GNB内の管理者ページアクセスポイント" width="762" /> ``` ## Related tickets & links - #518 - #531 (한국어 원본 변경) - #536 (동기화 도구) ## Test plan - [x] skeleton 비교로 구조 일치 확인 - [ ] CI 빌드 확인 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
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.
Description
)을 HTML<img>태그로 변환하여 width 속성을 명시합니다.Related tickets & links
Added/updated tests?
🤖 Generated with Claude Code