kss-node-template
This is a template for kss-node styleguide. "kss-node" is a NodeJS implementation of Knyle Style Sheets (KSS). kss-node enables us to generate a beatiful styleguide for CSS, of course that suports LESS, SASS and Stylus.
You can see the example styleguide from the left navi. That is thanks to Twitter Bootstrap.
Download
kss-node-template [zip] or
git clone git://github.com/htanjo/kss-node-template.git
Note: This package contains only template files. You have to install kss-node at first.
How to apply this template
- Install kss-node. Type
npm install kss
ornpm install -g kss
for global CLI. - Download kss-node-template and copy the "template" folder into your working directory.
- Run
kss-node
command with--template
option, like below.
kss-node <sourcedir> --template path/to/template
License
This template is under the MIT License.
kss-node quickstart
I introduce about kss-node briefly.
If you want to learn kss-node, please refer kss-node project page. And also the original KSS specification may be helpful for writing your documentation.
Installation
As kss-node is provided as a npm package, you can install by just typing npm install kss
.
If you want to use the command line interface, install it globally.
npm install -g kss
Format
kss-node is almost compatible with KSS documentation.
But kss-node can depend on only comment in source code because it has Markup:
directive for showing the sample markup.
Here is a basic format for kss-node documentation.
/*
Buttons
A majority of buttons in the site are built from the same base class.
:hovered - Highlight the button when hovered.
:disabled - Make the button change appearance to reflect it being disabled.
.primary - Indicate that the button is the primary feature of this form.
Markup:
<a href="#" class="button {$modifiers}">Link Button</a>
<button class="button {$modifiers}">Button Element</button>
Styleguide 1.1
*/
.button {
...
}
.button:hover {
...
}
.button:disabled {
...
}
.button.primary {
...
}
kss-node also supports CSS preprocessors such as LESS, SASS and Stylus.
You can use the //
comment section for writing your document.
// Buttons
//
// A majority of buttons in the site are built from the same base class.
//
// :hovered - Highlight the button when hovered.
// :disabled - Make the button change appearance to reflect it being disabled.
// .primary - Indicate that the button is the primary feature of this form.
//
// Markup:
// <a href="#" class="button {$modifiers}">Link Button</a>
// <button class="button {$modifiers}">Button Element</button>
//
// Styleguide 1.1
.button {
...
&:hover {
...
}
&:disabled {
...
}
.primary {
...
}
}
As you see in the above samples, kss-node comment has some blocks. From the top,
- Element's title
- Element's description
- List of modifier classes or pseudo-classes
- HTML markup
- Reference to the element's position in the styleguide
And each description supports the Markdown writing.
More example code
This document is also created by using kss-node. You can see the source code in the demo directory.