npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@asciidoctor-extender/adoc-ext-include-scss

v0.1.0-BETA

Published

An asciidoctor.js extension for commented scss variable files inclusion. (plugin for asciidoctor.js-extender)

Downloads

5

Readme

SCSS include plugin for asciidoctor-extender

This plugin allows for the inclusion of commented scss files in asciidoc. Mainly intended for use with variable files and in-file documentation.

Important notice: This is a plugin for the asciidoctor.js-extender project.

If you wish to submit a bug, contribute or request a feature please follow the guides at the end of this document.

Installation

To include the library in your project run the following command:

npm install -S @asciidoctor-extender/adoc-ext-include-scss

Configuration

In order to use the plugin with the asciidoctor.js-extender project add the plugin to the configuration:

{
  "extensions": {
    "include": [
      "@asciidoctor-extender/adoc-ext-include-scss",
      ...
    ]
  },
  ...
}

Usage

To create a description block use H[ 1-7 ] followed by the header title and a description.

//@H2 Variables
//@description This file contains the base variables for the application.

To create a block of variables with descriptions use:

//@description The base color for all text
$color-text: rgba(0, 0, 0, 1);

//@description The color used for warning text
$color-text--warning: rgba(255, 150, 60, 1);

//@description The color used for error text
$color-text--error: rgba(255, 0, 0, 1);

Which renders as:

| Name | Value | Description | |:--- |:----- |:----------- | | color-text | rgba(0, 0, 0, 1) | The base color for all text | | color-text—​warning | rgba(255, 150, 60, 1) | The color used for warning text | | color-text—​error | rgba(255, 0, 0, 1) | The color used for error text |

Seperate with two empty lines to break up the block and start a new block:

//@description The base color for all text
$color-text: rgba(0, 0, 0, 1);

//@description The color used for warning text
$color-text--warning: rgba(255, 150, 60, 1);


//@description The color used for error text
$color-text--error: rgba(255, 0, 0, 1);

Which renders as:

| Name | Value | Description | |:--- |:----- |:----------- | | color-text | rgba(0, 0, 0, 1) | The base color for all text | | color-text—​warning | rgba(255, 150, 60, 1) | The color used for warning text |

| Name | Value | Description | |:--- |:----- |:----------- | | color-text—​error | rgba(255, 0, 0, 1) | The color used for error text |

Registering issues

Should something be awry please feel free to register a bug by creating an issue labeled "bug" with a clear description of what fails, what is expected and steps to reproduce the error.

Contributing

To contribute to this library you can fork the library, implement the feature and create a pull request. Then create an issue labeled "Contribution" with a clear description of the feature and a reference to the pull request.

Requesting new features

In order to request a new feature please open a new issue labeled "Feature request" and a clear description of the functionality that is requested.