You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 9, 2026. It is now read-only.
The themes and templates architecture needs to be reworked and exposed. This will allow others to create new or custom themes and use them in markdown page generation. Themes should have the following features to start with:
Manifest file that can be included in a folder
Custom CSS, LESS, JS, and Images can be included,
Need pre and post render template pieces for including a header and footer
Should be able to 'inherit' from default theme
Should include mardown render template
Can force override of default to default to single page theme
Able to accept a custom set of parameters that can be included in rendering manifest files
This is the default initial manifest file that other manifest files will inherit from. Manifest files not wishing for a default value should override it.
The themes and templates architecture needs to be reworked and exposed. This will allow others to create new or custom themes and use them in markdown page generation. Themes should have the following features to start with:
This is the default initial manifest file that other manifest files will inherit from. Manifest files not wishing for a default value should override it.
{ "includeHead": true, "includeNav" : true, "includeFooter" : true, "preRenderTemplates" : [], "postRenderTemplates" : [], "renderTemplate" : null, "css" : [], "less" : [], "js" : [], "images" : [], "forceSinglePage" : false }More features will be added as the feature matures.