Forums de discussion

Ace editor CSS mode

Madhukara Patel, modifié il y a 7 années.

Ace editor CSS mode

Junior Member Publications: 46 Date d'inscription: 23/03/15 Publications récentes
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.