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

assemble-goldcome-highlight

v0.0.6

Published

Assemble的markdown语法高亮插件,用到highlight.js,生成html使用Cheerio.js.

Downloads

6

Readme

assemble-goldcome-highlight NPM version Build Status

Assemble的markdown语法高亮插件,用到highlight.js,生成html使用Cheerio.js.

Table of Contents

Quickstart

包安装:

npm install assemble-goldcome-highlight --save

Gruntfile.js定制:

module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    assemble: {
      options: {
        plugins: ['assemble-goldcome-highlight']
      },
      ...
    }
  });
  grunt.loadNpmTasks('assemble');
  grunt.registerTask('default', ['assemble']);
};

Options

selector

Type: String

指定要highlight的选择器,默认是全局

mode

Type: String

规定选择代码模式,默认是所有code代码下的,包括:<pre><code>...</code></pre><code>...</code>

选项为:code<code>...</code>;选项为precode``则...;选项为:all`,则两者皆有

Usage Examples

基本用法

最基本用法:

assemble: {
  blog: {
    options: {
      plugins: ['assemble-goldcome-highlight'],
    },
    files: {
      './blog/': ['./templates/blog/*.hbs']
    }
  }
}

高级

assemble: {
  blog: {
    options: {
      plugins: ['assemble-goldcome-highlight'],
      toc: {
        boxid: 'boxid'
      }
    },
    files: {
      './blog/': ['./templates/blog/*.hbs']
    }
  }
}

注意:要查看链接图标,一定要在服务器状态!

Author

goldcome

QQ/Email:[email protected]

Release History

  • 2014-02-22   v0.0.0   markdown语法高亮插件第一次构建
  • 2014-02-23   v0.0.1   去掉插件不必要语句 修正因忘记把highlight.js模块写到dependencies导致npm包错误
  • 2014-02-23   v0.0.2   增加代码选择器选项,默认code下所有
  • 2014-02-23   v0.0.3   解决boxid选项失效问题
  • 2014-02-24   v0.0.4   调整选项,现在选择器可以是任何选择器,而不紧限于ID
  • 2014-02-24   v0.0.5   上一版本无法发布npm包,直接下一版本,更改了一些关键词
  • 2014-02-24   v0.0.6   发布到github

License

Copyright (c) 2014 goldcome, contributors. Released under the MIT license


This file was generated on Sunday, March 9, 2014.