Defect #23341
openMarkdown Table formatting breaks with redmine wiki links
0%
Description
When formatting a table in markdown, and inserting internal wiki links via [[wiki_page_name|custom name]]
, such as:
| header | [[FAQ]] | [[Plugins|List of Plugins]] | |--------|---------|-----------------------------| | aaa | bbb | ccc |
The [[Plugins|List of Plugins]]
will get incorrectly truncated at |
which is interpreted as signaling the end of that column, and hence the URL link is not generated as it breaks off before reaching the ]]
.
Files
Related issues
Updated by Ben Blanco over 8 years ago
FWIW, in the meantime, the following workaround is available:
Instead of [[wiki_page_name|custom name]]
one can write [custom name](wiki_page_name)
.
Updating the above table example:
| header | [[FAQ]] | [List of Plugins](Plugins) | |--------|---------|----------------------------| | aaa | bbb | ccc |
Disclaimer: I don't know if this workaround would work for cross-project-wiki references...
Updated by Ben Blanco about 7 years ago
- File redmine_3.4.2.png redmine_3.4.2.png added
FYI - This problem remains in latest redmine v3.4.2 (and its updated redcarpet
gem)
In redmine 3.3.x and 3.4.x, it renders as such:
Could this problem be due to redcarpet
gem itself, vs. redmine's integration of redcarpet
..?
Updated by Go MAEDA about 6 years ago
- Related to Defect #29852: Cannot use Wiki link with a different name in the table of markdown added
Updated by Takenori TAKAKI about 6 years ago
- File 23341.patch 23341.patch added
I confirmed that redcarpet gem cannot distinguish '|'.
To solve this problem, It is necessary to replace '|', before and after redcarpet is formatting Markdown to HTML.
So, I made a patch that overrides Redcarpet::Render::HTML#preprocess and #postprocess methods and replace '|'.
Updated by Go MAEDA almost 6 years ago
- Target version set to Candidate for next minor release
Updated by Martin Cizek over 5 years ago
- File 23341-fixed-regexp.patch 23341-fixed-regexp.patch added
Thanks Takenori for the patch. I've found out that the regexp does not work when it is trying to replace the |
placeholder back with |
, as the placeholder is multicharacter and used in a character class.
As a result, it does not work if the name contains e.g. numbers 1, 2 or 4.
The solution is to use this regexp:
full_document.gsub(/(\[\[(((?![\]\n]|#{pattern}).)+)(#{pattern})(((?![\]\n]|#{pattern}).)+)\]\])/) do |m| all, page, separater, title = $1, $2, $4, $5
A new patch is attached (it's against Redmine 3.4 though).