Menu

[r1]: / formatter.py  Maximize  Restore  History

Download this file

12 lines (8 with data), 321 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def format(string):
""" Formats CSS text to be more human readable """
#string = string.replace('{\n','{\n\t')
#string = string.replace(';\n',';\n\t')
#string = string.replace('\n\t}','\n}')
string = string.replace('{\n', '{ ')
string = string.replace(';\n', '; ')
return string
MongoDB Logo MongoDB