Foros de discusión

Ace editor CSS mode

Madhukara Patel, modificado hace 7 años.

Ace editor CSS mode

Junior Member Mensajes: 46 Fecha de incorporación: 23/03/15 Mensajes recientes
Hi all ,
In ace editor css mode when we enter in new line like below:
.aaaa{color:red}

.bbbb{color:yelow}

while getting this value appending the </br>
tag for line breaking how to avoid that .


OutPut is :

.madhu{background:red;}
<br>
<br>
.aaaa{color:yellow;}

i need out put like this:
.madhu{background:red;}

.aaaa{color:yellow;}

Thanks in advance.