mirror of
https://github.com/yihui/hugo-xmin.git
synced 2024-11-25 17:59:19 +02:00
19 lines
626 B
HTML
19 lines
626 B
HTML
<script src="/js/simpletoc.js"></script>
|
||
<script>
|
||
var firstLvl = 2; // h2 start
|
||
var lastLvl = 4; // h4 end
|
||
var divID = "TOC";
|
||
var divToSearch = "post-content";
|
||
window.onload=function(){
|
||
//params
|
||
// param1:firstlevel,default: h2
|
||
// param2:lastLevel,defualt: h3
|
||
// param3:divID, the div to place the toc,default: TOC
|
||
// param4:the wrapper div containing headlines to search
|
||
toc(firstLvl, lastLvl, divID, divToSearch);
|
||
diyStyle(divID);
|
||
addNewStyle('@media (max-width: 48em) {#'+divID+'{display: none;} }');
|
||
addNewStyle('.TOCSectNum {margin-right: 0.5em;}');
|
||
}
|
||
</script>
|
||
<div id="TOC"></div> |