Defect #25299
Markdown pre-block could derive incorrect wiki sections
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Wiki | |||
Target version: | 3.3.7 | |||
Resolution: | Fixed | Affected version: | 3.3.6 |
Description
In markdown formatting, pre-block by ```
including #
derives incorrect wiki editable-sections.
Example:
# H1 ## H2 ``` ## pre-block ``` ### H3
Editing section "H2":
## H2 ```
and editing section "H3":
## pre-block ``` ### H3
As above, #
in pre-block is treated as markdown header.
NOTE pre-block by ~~~
does right results.
# H1 ## H2 ~~~ ## pre-block ~~~ ### H3
Editing "H2":
## H2 ~~~ ## pre-block ~~~ ### H3
and editing "H3":
### H3
I attached a fix patch.
Related issues
Associated revisions
Markdown pre-block could derive incorrect wiki sections (#25299).
Patch by Kiichi Ozaki.
History
#1
Updated by Toshi MARUYAMA almost 4 years ago
- Target version set to 4.1.0
#2
Updated by Go MAEDA about 3 years ago
- Blocks Feature #22843: Change the value of "pre" button in Markdown toolbar from "~~~" to "```" added
#3
Updated by Go MAEDA almost 3 years ago
- Target version changed from 4.1.0 to 3.3.7
- Affected version set to 3.3.6
Since it is a very small fix, I think we can include the fix in the next minor release. Setting target version to 3.3.7.
#4
Updated by Jean-Philippe Lang almost 3 years ago
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
- Resolution set to Fixed
Committed, thanks.