2017-01-16 1 views
-2

HTML과 TEXT를 나란히 볼 수있는 WYSIWYG 편집기를 찾고 AngularJS와 함께 사용할 수있는 단추를 통해 모든 서식 관련 기능을 수행합니다.각도 WYSIWYG 편집기?

하나를 찾을 수
+0

"* 질문 오프 주제 스택 오버플로있는 책, 도구, 소프트웨어 라이브러리, 자습서 또는 다른 오프 사이트 리소스를 권장하거나 찾기 위해 우리를 요청 그들은 오피니언 스 답과 스팸을 끌어들이는 경향이 있습니다. 대신 문제를 설명하고 지금까지 해결 된 문제를 설명하십시오. * " – Mistalis

답변

0

또 다른 간단하지만 강력한 하나 Angular Trix

<trix-editor ng-model-options="{ updateOn: 'blur' }" 
    spellcheck="false" class="trix-content" ng-model="trix" 
    angular-trix trix-initialize="trixInitialize(e, editor);" 
    trix-change="trixChange(e, editor);" 
    trix-selection-change="trixSelectionChange(e, editor);" 
    trix-focus="trixFocus(e, editor);" trix-blur="trixBlur(e, editor);" 
    trix-file-accept="trixFileAccept(e, editor);" 
    trix-attachment-add="trixAttachmentAdd(e, editor);" 
    trix-attachment-remove="trixAttachmentRemove(e, editor);" 
    placeholder="Write something.."></trix-editor> 

LIVE DEMO