/**
* Removes all marks from a text
*
* @param {string} text The marked text.
* @returns {string} The unmarked text.
*/exportdefaultfunction( text ) {
return text
.replace( newRegExp( "<yoastmark[^>]*>", "g" ), "" )
.replace( newRegExp( "</yoastmark>", "g" ), "" );
}