jekyll-minifier icon indicating copy to clipboard operation
jekyll-minifier copied to clipboard

PHP minifier breaks PHP file when single line comments are present

Open JacksonChen666 opened this issue 2 years ago • 0 comments

Single line comments (like below) in php

// a single line comment
nextStatement();

gets minified without being manipulated and turn into

// a single line comment nextStatement();

breaking the rest of the PHP file.

Screenshot (224kb) (left side is not minified, and the right side is minified but with changes that break the PHP file due to single line comments)

Original PHP file (external)

Workaround:

A workaround for not letting comments break the rest of the file is to use /* multi-line (or 'C' style) comments instead */

JacksonChen666 avatar Aug 11 '21 15:08 JacksonChen666