How to render html view in data-mathjax-bind in angularjs

In this view, mathjax data works well, but when we add enter to textarea, it is not going to a new line. when we post something like this

a) A b) B c) C then it display a) A b) B c) C I want to display it like in data-mathjax-bind a) A b) B c) C how to solved this? 
 <div class="question-title-preview"> <span data-mathjax-bind="question.titleDisplay"></span> </div> 
+5
source share
1 answer

When I put $ \\ $ , then it takes a new line, but I want using code like $ 1)abcd\\ 2)efgh $ it shows me

  1) abcd 2) efgh how can i do it through codeing? 
+2
source

Source: https://habr.com/ru/post/1264672/


All Articles