-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix escaping of |
inside table cells
#3112
Conversation
Works! Can you prepare a test for it? To prevent eventual regression. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a tons, tested and works. 👍
A small unit test would be great :)
`|` is a special character inside tables and need to be escaped if used inside table cells. Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
fe1b985
to
61df5f4
Compare
/compile |
@vinicius73 @juliushaertl Added a test to ensure table cells are escaped |
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
/backport 9b3ddae,61df5f4fbdbb2962d15f34bb0b74af046646c324 to stable25 |
Summary
|
is a special character inside tables and need to be escaped if used inside table cells.Without this tables get broken if a cell contains something like
a | b
.