const tocBox = document.getElementById('toc-box');
const tList = document.getElementById('post-content').querySelectorAll('h1, h2, h3, h4, h5, h6');
const hList = ['H1', 'H2', 'H3', 'H4', 'H5', 'H6'];
let tmpHtml = `
\n`;
Array.from(tList, v => {
    // get the level number
    const H = hList.indexOf(v.nodeName) + 1 || 1;
    tmpHtml += `
\n`;
});
tmpHtml += `