4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

スタイルガイドジェネレータまとめ

Last updated at Posted at 2016-07-29

StyleGuide比較

追記

未だにたまにストックされるので...

今はStorybook + addon-docs でmdxで作ってます。
多分、HTML向けのStorybookで同程度に簡単にメンテできるのではなかろうか。
(同一ファイルにするのは無理ですが。。。

マークダウン 記法

 /*doc
 ---
 title: Alert
 name: alert
 category: basics
 ---
  ```html_example
     <div class='alert'>Hello</div>
  ``` 
 */
.alert{
  ...
}

categoryがindexになる。 parentも指定できて、grouping可能

Hologram

環境 メタ言語
Ruby Sass/Scss/Less/PostCSS

aigis


タグ機能がある

環境 メタ言語
Node.js Sass/Scss/Less/PostCSS

KSS 記法のもの

// A button suitable for giving a star to someone.
//
// :hover             - Subtle hover highlight.
// .star-given        - A highlight indicating you've already given a star.
// .star-given:hover  - Subtle hover highlight on top of star-given styling.
//
// Styleguide 2.1.3.
a.button.star{
  ...
  &.star-given{
    ...
  }
}

Styleguideのあとの数字がカテゴリになる

KSS

環境 メタ言語
Ruby Sass/Scss/Less

kss-node

環境 メタ言語
Node.js Sass/Scss/Less

SC5 Style Guide Generator

環境 メタ言語
Node.js Sass/Scss/Less/PostCSS

その他

StyleDocco

docs___StyleDocco.png

実物サンプルが表示されないようなので選外…

環境 メタ言語
Node.js Sass/Scss/Less/PostCSS
4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?