728x90
https://github.com/wcoder/highlightjs-line-numbers.js/
티스토리 hello스킨 코드 라인줄 추가하는 법
HTML 편집 모드
body 안에 넣어준다.
<script defer src='//cdn.jsdelivr.net/npm/highlightjs-line-numbers.js@2.8.0/dist/highlightjs-line-numbers.min.js'></script>
<script>
window.onload = function() {
hljs.highlightAll();
hljs.initLineNumbersOnLoad()
}
</script>
CSS 편집 모드
맨 마지막에 아래의 코드를 입력한다.
<!-- for block of numbers -->
#content .hljs-ln-numbers {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: center;
color: #ccc;
border-right: 1px solid #CCC;
vertical-align: top;
padding-right: 5px;
}
<!-- for block of code -->
#content .hljs-ln-code {
padding-left: 10px;
}
728x90
'기타 > Tistory' 카테고리의 다른 글
[Tistory] 티스토리 스킨 바꾸고 수식 적용 안될 때 (1) | 2023.05.01 |
---|---|
[Tistory] 카카오 로그인 안될 때 (0) | 2022.09.04 |
[Tistory] Jupyter notebook 올리기 (0) | 2022.09.02 |
[Tistory] 티스토리 글쓰기 버튼 추가하기 (0) | 2022.08.17 |
Tistory 수식 적용하기 (0) | 2022.06.06 |