test > 연구실

본문 바로가기

연구실

[그누보드5] test

본문

// Event for Insert Code button to insert code with highlight
$(document).on('click', '#insertCodeButton', function () {
  let codeSnippet = $('#codeInput').val();
  let selectedLanguage = $('#languageSelector').val(); // 선택된 언어를 가져옵니다.
  if (codeSnippet) {
    codeSnippet = encodeHtmlEntities(codeSnippet);
    const editorInstance = FroalaEditor.INSTANCES[0];
    // 언어 레이블을 포함하여 코드를 삽입
    editorInstance.html.insert(`<pre><code class="language-${selectedLanguage}">${codeSnippet}</code><small class="language-label" style="float:right; font-size:smaller; color:#ccc;">${selectedLanguage.toUpperCase()}</small></pre><p>&nbsp;</p>`, true);
    setTimeout(() => {
      document.querySelectorAll('pre code').forEach((block) => {
        hljs.highlightElement(block);
      });
    }, 100);
  }
  editorInstance.popups.hide('customPlugin.popup');
});

 


0
로그인 후 추천 또는 비추천하실 수 있습니다.

댓글목록0

등록된 댓글이 없습니다.
전체 5 건 - 1 페이지
번호
제목
글쓴이
게시판 전체검색