Documented Style Sheets Parser
Перейти к файлу
PreslavKozovski 827ca613f2 fix(parsing): allow usage of '@' in blocks 2021-02-05 11:37:10 +02:00
playground chore: update playground 2021-02-04 18:17:28 +02:00
test fix(parsing): allow usage of '@' in blocks 2021-02-05 11:37:10 +02:00
.commitlintrc.json chore: add commitlint and husky 2021-02-03 18:13:30 +02:00
.editorconfig chore: fix eslint errors 2021-02-03 13:13:23 +02:00
.eslintrc chore: fix eslint errors 2021-02-03 13:13:23 +02:00
.gitignore chore: add mocha tests 2021-02-02 18:59:02 +02:00
LICENSE-MIT Added Grunt support 2013-03-02 08:09:49 -05:00
README.md Update readme broken javascript syntax highlighting 2015-05-05 17:20:20 -04:00
dss.js fix(parsing): allow usage of '@' in blocks 2021-02-05 11:37:10 +02:00
package.json chore: add commitlint and husky 2021-02-03 18:13:30 +02:00

README.md

DSS

NPM

DSS, Documented Style Sheets, is a comment styleguide and parser for CSS, LESS, STYLUS, SASS and SCSS code.

Generating Documentation

In most cases, you will want to include the DSS parser in a build step that will generate documentation files automatically. grunt-dss is the official DSS grunt task which does just that.

Parser Example

Example Comment Block

/**
  * @name Button
  * @description Your standard form button.
  * 
  * @state :hover - Highlights when hovering.
  * @state :disabled - Dims the button when disabled.
  * @state .primary - Indicates button is the primary action.
  * @state .smaller - A smaller button
  * 
  * @markup
  *   <button>This is a button</button>
  */ 

or

//
// @name Button
// @description Your standard form button.
// 
// @state :hover - Highlights when hovering.
// @state :disabled - Dims the button when disabled.
// @state .primary - Indicates button is the primary action.
// @state .smaller - A smaller button
// 
// @markup
//   <button>This is a button</button>
// 

Example Parser Implementation

// Require/read a file
var fs = require( 'fs' );
var file = fs.readFileSync( 'styles.css' );

// Run DSS Parser
dss.parse( file, {}, function ( parsed ) {
  console.log( parsed );
});

Example Generated Object

{
  "name": "Button",
  "description": "Your standard form button.",
  "state": [
    { 
      "name": ":hover",
      "escaped": "pseudo-class-hover",
      "description": "Highlights when hovering."
    },
    {
      "name": ":disabled",
      "escaped": "pseudo-class-disabled",
      "description": "Dims the button when disabled."
    },
    {
      "name": ".primary",
      "escaped": "primary",
      "description": "Indicates button is the primary action."
    },
    {
      "name": ".smaller",
      "escaped": "smaller",
      "description": "A smaller button"
    }
  ],
  "markup": {
    "example": "<button>This is a button</button>",
    "escaped": "&lt;button&gt;This is a button&lt;/button&gt;"
  }
}

Modifying Parsers

DSS, by default, includes 4 parsers for the name, description, states and markup of a comment block. You can add to or override these default parsers using the following:

// Matches @link
dss.parser('link', function(i, line, block){

  // Replace link with HTML wrapped version
  var exp = /(b(https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|])/ig;
  line.replace(exp, "<a href='$1'>$1</a>");
  return line;
   
});

DSS Sublime Text Plugin

You can now auto-complete DSS-style comment blocks using @sc8696's Auto-Comments Sublime Text Plugin