angularjs로 줄 바꿈 유지 나는 이 SO 질문을 본 적이 있다. 대신 내 코드ng-bind="item.desc"사용하다{{item.desc}}왜냐하면 저는ng-repeat전에. 그래서 내 코드: {{item.description}} 항목 설명에는 다음이 포함됩니다.\n렌더링되지 않은 새 줄의 경우. 어떻게 하면{{item.description}}새로운 라인을 쉽게 표시할 수 있습니다.ng-repeat위에?@pilau의 답변에 근거하고 있지만, 받아들여진 답변에도 없는 개선점을 가지고 있습니다. {{item.description}} /* in the css file or in a style block */ .angular-with-newlines { white-space: pre-line; } 이렇..