Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

melius

[Style] 티스토리 코드블럭 스타일 입히기 본문

et cetera

[Style] 티스토리 코드블럭 스타일 입히기

melius102 2019. 12. 19. 18:42

highlight.js

https://highlightjs.org/

https://aossuper8.tistory.com/121

 

styles폴더에서 원하는 css 파일(your_style.css)을 선택

스킨 편집 > html 편집 > 파일업로드에서 highlight.pack.js 파일과 your_style.css 파일을 업로드

 

HTML head 태그에 추가

<link rel="stylesheet" href="./images/your_style.css">
<script src="./images/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>

 

let num = 1;
console.log(num);

function $initHighlight(block, cls) {
  try {
    if (cls.search(/\bno\-highlight\b/) != -1)
      return process(block, true, 0x0F) +
             ` class="${cls}"`;
  } catch (e) {
    /* handle exception */
  }
  for (var i = 0 / 2; i < classes.length; i++) {
    if (checkCondition(classes[i]) === undefined)
      console.log('undefined');
  }

  return (
    <div>
      <web-component>{block}</web-component>
    </div>
  )
}

export  $initHighlight;

 

'et cetera' 카테고리의 다른 글

[Style] 티스토리 폰트 변경  (0) 2019.12.31
[UI] Design Tool  (0) 2019.12.28
[Style] 티스토리 수식 작성  (0) 2019.12.27
[portfolio] web site  (2) 2019.12.26
[Plan] UX/UI 설계  (0) 2019.12.19
Comments