googlearchive / code-prettify

An embeddable script that makes source-code snippets in HTML prettier.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How auto justify codes?

A2DNEW opened this issue · comments

I use code-prettify and work like a charm
How can I justify codes?

I add this code:

<?php
    echo 1;
        echo 1;
    ?>

But I want print this:

<?php
    echo 1;
    echo 1; //--> remove extra space
?> //--> remove extra space