Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request fixes markdown rendering issues in Chapter 2 documentation where nested code fences were causing display problems. The issue occurred when template examples containing triple-backtick code blocks (like ```bash or ```python) were enclosed in triple-backtick markdown fences, causing the inner closing fence to prematurely terminate the outer block.
Changes:
- Changed outer code fences from
```markdownto````markdown(quadruple backticks) for Issue and PR template examples - Added explicit closing
````markers at the end of each template example - Applied identical fixes to both
src/anddocs/directories to maintain consistency
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/chapters/chapter02/index.md | Fixed nested code fence rendering in AI collaboration templates for Issue and PR examples |
| docs/chapters/chapter02/index.md | Applied identical nested code fence fixes to the docs version of Chapter 2 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Collaborator
Author
|
Copilot レビューは要約のみで、追加の修正指摘はありませんでした。
|
29 tasks
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.
変更内容
docs/とsrc/の双方に同様の修正を適用背景
テンプレート例の中に
```bash/```pythonのようなフェンスを含めていたため、内側の閉じフェンス```が外側ブロックを閉じてしまい、表示が崩れる状態でした。