import { baseMarkPattern } from'./__base';
/**
* For text that has leading and ending space. We don't want to
* convert it to `*strong *. Instead, we need it to be `*strong* `
*/exportvar strong = functionstrong(text) {
returnbaseMarkPattern(text, '*');
};