Jayda is an automatic pattern library generator with some built in start libraries if you choose to use them.
Create pattern libraries automatically by just coding like you do everyday. No extra work or external files to keep up with.
All templates are built using Jade.
You can use this to create fully customized pattern libraries automatically just by creating jade mixins... THAT IS THE POINT.
Download the "barebones" branch. (coming soon)
Download the "material" branch. (coming soon)
Download the "bootstrap" branch. (coming soon)
Download repo.
$ npm install
$ bower install
$ gulp
- Inside the patterns directory create a folder for your components.
- Inside that folder create a jade file for your component.
- Create your mixin.
mixin string(item1)
p= item1
- Call your mixin (This is the most important step for getting your documentation to build)
if patternLibrary
// Title: Paragraph
// Description: I am a paragraph
+string('I am your paragraph text')
- Now you can call this mixin in any file you want and your documentation is generated!