Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Synap Editor에서 작성된 내용을 텍스트로 가져옵니다.


Parameters:

Name

Type

Attribute

Description

htmlcode

options

Object
boolean이모지가

  • emoji
    default : false
      • 'htmlcode': 이모지가 있는 경우 � 형식의 HTML Character Code 로 변환
      • 'unicode
    booleandefault : false이모지가
      • ': 이모지가 있는 경우 \u0000 형식의 Unicode 로 변환
      • 'remove
    booleandefault : false이모지가
      • ': 이모지가 있는 경우 텍스트에서 이모지를 제거


    Return:

    Type
    Attribute
    Description
    String에디터에서 작성된 텍스트



    Example:

    Code Block
    languagejs
    themeEmacs
    var textContent = editor.getTextContent();
    if(textContent.trim() !== '') { // 에디터 텍스트 컨텐츠가 공백문자로만 있을 경우를 판단하여 없을경우에만 html을 가져온다.
    	html = editor.getPublishingHtml();
    }
    
    
    // emoji 옵션
    editor.getTextContent({
    	emoji: 'htmlcode'
    });

    ...