Skip to content
Snippets Groups Projects
Unverified Commit 01f01366 authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Fix typo in comment


Signed-off-by: default avatarMorris Jobke <hey@morrisjobke.de>
parent aed1fde6
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ class MarkDown extends TXT {
$content = preg_replace('/((?!^(\s*-|#)).*)(\w|\\|\.)(\r\n|\n|\r)(\w|\*)/mU', '$1 $3', $content);
// Remove markdown symbols that we cannot easily represent in renered text in the preview
// Remove markdown symbols that we cannot easily represent in rendered text in the preview
$content = preg_replace('/\*\*(.*)\*\*/U', '$1', $content);
$content = preg_replace('/\*(.*)\*/U', '$1', $content);
$content = preg_replace('/\_\_(.*)\_\_/U', '$1', $content);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment