minify icon indicating copy to clipboard operation
minify copied to clipboard

Can you also support minify a markdown?

Open bestian opened this issue 1 year ago • 0 comments


function minifyMd(content) {
    // Remove extra whitespace
    let minified = content.replace(/\s+/g, ' ');
    // Remove unnecessary line breaks
    minified = minified.replace(/\n /g, '\n').replace(/ \n/g, '\n');
    return minified;
}

bestian avatar Aug 01 '23 01:08 bestian