Я хочу сделать строку с начальными точками для отображения в html.
const text = '* this is a string number 1'
const text2 = '* this is a string number 2'
const finalText = text + `\ \n ` + text2;
// set text in html with jquery //
$('#labels_body').text(finalMessage);
mi page show:
* this is a string number 1
* this is a string number 2
, но я хочу показать без cdns:
- это номер строки 1
- это номер строки 2