UNPKG

ink-docstrap

Version:

DocStrap is [Bootstrap](http://twitter.github.io/bootstrap/index.html) based template for [JSDoc3](http://usejsdoc.org/). In addition, it includes all of the themes from [Bootswatch](http://bootswatch.com/) giving you a great deal of look and feel optio

18 lines (15 loc) 403 B
/** * jQuery plugin for Sunlight http://sunlightjs.com/ * * by Tommy Montgomery http://tmont.com/ * licensed under WTFPL http://sam.zoy.org/wtfpl/ */ (function($, window){ $.fn.sunlight = function(options) { var highlighter = new window.Sunlight.Highlighter(options); this.each(function() { highlighter.highlightNode(this); }); return this; }; }(jQuery, this));