[Blogger/구글 블로그] 목차 자동 작성하기
목차를 자동으로 생성할 수 있도록 해주는 방법을 알려준 글이다. https://www.wonderkrish.com/2018/10/automatic-table-of-contents-blogger.html 요약하면 1. 테마 -> html수정 2. </head> 태그를 찾아서 바로 위에 아래의 코드 삽입 <link href= 'http://fortawesome.github.io/Font-Awesome/assets/font-awesome/css/font-awesome.css' rel= 'stylesheet' /> <link href= 'http://fonts.googleapis.com/css?family=Oswald' rel= 'stylesheet' type= 'text/css' /> <script type= 'text/javascript' > //<![CDATA[ //*************TOC plugin by MyBloggerTricks.com function mbtTOC() { var mbtTOC = i = headlength = gethead = 0 ; headlength = document .getElementById( "post-toc" ).getElementsByTagName( "h2" ).length; for (i = 0 ; i < headlength; i ++ ) {gethead = document .getElementById( "post-toc" ).getElementsByTagName( "h2" )[i].textContent; document .getElementById( "post-...