WordPress Version: 6.1
/**
* Newline preservation help function for wpautop().
*
* @since 3.1.0
* @access private
*
* @param array $matches preg_replace_callback matches array
* @return string
*/
function _autop_newline_preservation_helper($matches)
{
return str_replace("\n", '<WPPreserveNewline />', $matches[0]);
}