0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-19 07:42:42 +00:00

Initial draft

This commit is contained in:
Victor Losada Hernandez
2023-03-26 23:28:29 +02:00
parent 46bc34d527
commit d278c52571
3 changed files with 140 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ const scriptGen = require('./snippets/script.gen.js');
const ClassFeatureGen = require('./snippets/classfeature.gen.js');
const CoverPageGen = require('./snippets/coverpage.gen.js');
const TableOfContentsGen = require('./snippets/tableOfContents.gen.js');
const indexGen = require('./snippets/index.gen.js');
const dedent = require('dedent-tabs').default;
@@ -192,6 +193,11 @@ module.exports = [
\n`;
},
},
{
name : 'Index',
icon : 'fas fa-bars',
gen : indexGen,
},
]
},