Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR standardizes Markdown code-fence language identifiers across the multilingual docs so syntax highlighting/rendering is consistent (e.g., Shell → shell, JSON → json, YAML → yaml, Python → python, Bash → bash, jinja2 → jinja).
Changes:
- Normalize code block language tags to lowercase across EN/JA/ZH docs.
- Align Jinja-related code fences to
jinja.
Reviewed changes
Copilot reviewed 22 out of 22 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| zh/use-dify/workspace/api-extension/api-extension.mdx | Normalize Shell → shell in ngrok command examples. |
| zh/use-dify/nodes/trigger/webhook-trigger.mdx | Normalize JSON → json for request-body example code fence. |
| zh/use-dify/nodes/template.mdx | Normalize jinja2 → jinja for template syntax examples. |
| zh/use-dify/nodes/llm.mdx | Normalize jinja2 → jinja for prompt template example. |
| zh/self-host/advanced-deployments/start-the-frontend-docker-container.mdx | Normalize Bash → bash for Docker command snippet. |
| zh/self-host/advanced-deployments/local-source-code.mdx | Normalize Bash → bash for git/compose commands. |
| zh/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx | Normalize YAML/Python → yaml/python in embedded examples. |
| ja/use-dify/workspace/api-extension/api-extension.mdx | Normalize Shell → shell in ngrok command examples. |
| ja/use-dify/nodes/trigger/webhook-trigger.mdx | Normalize JSON → json for request-body example code fence. |
| ja/use-dify/nodes/template.mdx | Normalize jinja2 → jinja for template syntax examples. |
| ja/use-dify/nodes/llm.mdx | Normalize jinja2 → jinja for prompt template example. |
| ja/self-host/advanced-deployments/start-the-frontend-docker-container.mdx | Normalize Bash → bash for Docker command snippet. |
| ja/self-host/advanced-deployments/local-source-code.mdx | Normalize Bash → bash for git/compose commands. |
| ja/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx | Normalize YAML/Python → yaml/python in embedded examples. |
| en/use-dify/workspace/api-extension/api-extension.mdx | Normalize Shell → shell in ngrok command examples. |
| en/use-dify/nodes/trigger/webhook-trigger.mdx | Normalize JSON → json for request-body example code fence. |
| en/use-dify/nodes/template.mdx | Normalize jinja2 → jinja for template syntax examples. |
| en/use-dify/nodes/llm.mdx | Normalize jinja2 → jinja for prompt template example. |
| en/use-dify/nodes/iteration.mdx | Normalize jinja2 → jinja for template usage snippet. |
| en/self-host/advanced-deployments/start-the-frontend-docker-container.mdx | Normalize Bash → bash for Docker command snippet. |
| en/self-host/advanced-deployments/local-source-code.mdx | Normalize Bash → bash for git/compose commands. |
| en/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx | Normalize YAML/Python → yaml/python in embedded examples. |
Comments suppressed due to low confidence (3)
en/use-dify/nodes/trigger/webhook-trigger.mdx:127
- The fenced block is labeled as
json, but the example content isn’t valid JSON (it’s missing the surrounding{ ... }object wrapper). This can mislead readers who try to copy/paste the payload; either wrap it as a complete JSON object/array, or switch the fence to a non-JSON language (e.g.text) if it’s intentionally partial.
```json
"customerName": "Alex",
"items":
[
{ "sku": "A42", "quantity": 2 },
zh/use-dify/nodes/trigger/webhook-trigger.mdx:123
- 代码块标注为
json,但示例内容并不是合法 JSON(缺少外层{ ... })。这会影响读者复制粘贴测试;建议补全为完整 JSON 对象/数组,或如果只是片段则将代码块语言改为text等非 JSON。
```json
"customerName": "Alex",
"items":
[
{ "sku": "A42", "quantity": 2 },
ja/use-dify/nodes/trigger/webhook-trigger.mdx:129
- The fenced block is labeled as
json, but the example isn’t valid JSON because it’s missing the outer{ ... }wrapper. Consider making the snippet a complete JSON object/array (better for copy/paste), or use a non-JSON fence liketextif it’s meant to be a fragment.
```json
"customerName": "Alex",
"items":
[
{ "sku": "A42", "quantity": 2 },
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
RiskeyL
approved these changes
Mar 16, 2026
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.
No description provided.