Approval Queue: Code Block reset line return #229
Labels
No Label
Priority
Critical
Priority
High
Priority
Low
Priority
Normal
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
Type
Breaking
Type
Documentation
Type
Enhancement
Type
Feature
Type
Report
Type
Security
Type
Suggestion
Type
Testing
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: infrastructure/extensions-website#229
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In the Approval Queue comment section, when using a code block at the beginning of a line, it moves the line to the end of the previous one.
For Example:
Will be displayed:
Example: https://extensions.blender.org/approval-queue/node-editor-switcher/
Same for:
result in:
name = "High Color"
tagline = "Colorful theme with high contrast colors"
result in:
name = "High Color" tagline = "Colorful theme with high contrast colors"
@Victor-09 thank you for the report. Let me break down your comments to two subtopics:
Code that is added to Markdown like this: `code` is an inline element, and is not supposed to break into a new line. With current Markdown rendering, you can open a new line in one of these ways:
<br>
at the end of the line, and then opening a new line.In the above context, code tags are handled as any other inline elements.
You were correct that line breaks weren't preserved when rendering multi-line code blocks that were added between ``` lines. It was fixed, and line-breaks should now be rendered when writing code within these tags.