0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 15:52:43 +00:00

Another attempt at clearer classnames for the Table of contents snippet

This commit is contained in:
David Bolack
2024-05-22 17:25:52 -05:00
parent b496ef3597
commit 0df53daa4c
2 changed files with 15 additions and 16 deletions

View File

@@ -33,26 +33,26 @@ module.exports = [
{
name : 'Include in ToC up to H3',
icon : 'fas fa-dice-six',
gen : dedent `\n{{tocH3
gen : dedent `\n{{tocAddH1H3
}}\n`,
},
{
name : 'Include in ToC up to H4',
icon : 'fas fa-dice-four',
gen : dedent `\n{{tocH4
gen : dedent `\n{{tocAddH1H4
}}\n`,
},
{
name : 'Include in ToC up to H5',
icon : 'fas fa-dice-five',
gen : dedent `\n{{tocH5
gen : dedent `\n{{tocAddH1H5
}}\n`,
},
{
name : 'Include in ToC up to H6',
icon : 'fas fa-dice-six',
gen : dedent `\n{{tocH6
gen : dedent `\n{{tocAddH1H6
}}\n`,
}
]