Skip to content

Instantly share code, notes, and snippets.

@vijinho
Last active February 13, 2025 16:12
Show Gist options
  • Save vijinho/3d66fab3270fc377b8485387ce7e7455 to your computer and use it in GitHub Desktop.
Save vijinho/3d66fab3270fc377b8485387ce7e7455 to your computer and use it in GitHub Desktop.
Return a given string with the text markdown escaped, in PHP
<?php
/**
* Escape markdown text
*
* @param string $text The markdown text to escape
*
* @return string Escaped text
*/
function markdown_escape($text) {
// Define a regex pattern for all special characters in markdown
$pattern = '/[-#*+`._[\]()!&<>_{}|]/';
// Replace the special characters with their escaped versions
$replacement = function ($matches) {
return '\\' . $matches[0];
};
// Perform the replacement using preg_replace_callback
return preg_replace_callback($pattern, $replacement, $text);
}
@MartinGoesToSauerland
Copy link

It would be good to add the pipe ( | ) to your list. Otherwise great and thank you!

@vijinho
Copy link
Author

vijinho commented Feb 7, 2024

Lol, I can't believe people still use my stuff, not coded for over a year. OK added a pipe!

@looqey
Copy link

looqey commented Feb 26, 2024

Lol, I can't believe people still use my stuff, not coded for over a year. OK added a pipe!

Thank you, also used it

@Drivible
Copy link

+1 useful.
Cheers!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment