jupyter에서 코드만 숨겼다 펼쳤다 하는 toggle 코드
2021. 4. 7. 09:41
display(
HTML('''
code_show=true;
function code_toggle() {
if (code_show){
$('div.input').hide();
} else {
$('div.input').show();
}
code_show = !code_show
}
$( document ).ready(code_toggle);
'빅데이터 관련 프로그래밍' 카테고리의 다른 글
jupyter notebook 브라우저 크롬으로 지정 2가지 방법 (0) | 2021.04.21 |
---|---|
jupyter notebook TOC 쓸 수 있게 extension 설치 명령어 (1) | 2021.04.05 |