Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Linkify HTML headers and generate a TOC.
Install the module with: npm install toc
var toc = require('toc');
Strip HTML tags from a string.
var stripped = toc.untag(html);
Convert a string of text into something URL-friendly and not too fugly.
var anchor = toc.anchor(arbitraryText);
Get a unique name and store the returned name in names for future unique-name-gettingness.
var names = {};
var guaranteedUniqueAnchor1 = toc.unique(names, toc.anchor(arbitraryText));
var guaranteedUniqueAnchor2 = toc.unique(names, toc.anchor(arbitraryText));
var htmlWithAnchorsAndTOC = toc.process(html [, options]);
Number
- Min header level to add to TOC. Defaults to 2
.Number
- Max header level to add to TOC. Defaults to 6
.Number
- Min header level to anchorize. Defaults to 2
.Number
- Max header level to anchorize. Defaults to 6
.String
| Function
- Lodash template string or function used to anchorize a header.String
| Function
- Lodash template string or function used to wrap the generated TOC.String
| Function
- Lodash template string or function used to generate the TOC.String
| Function
- Lodash template string or function used to generate the TOC.String
| Function
- Lodash template string or function used to generate the TOC.String
| Function
- Lodash template string or function used to generate the TOC.RegExp
- Used to match TOC placeholder. Defaults to /<!--\s*toc\s*-->/gi
.The default HTML is pretty awesome, but you can customize the hell out of the generated HTML, eg.
var htmlWithAnchorsAndTOC = toc.process(html, {
header: '<h<%= level %><%= attrs %> id="<%= anchor %>"><%= header %></h<%= level %>>',
toc: '<div class="toc"><%= toc %></div>',
openUL: '<ul data-depth="<%= depth %>">',
closeUL: '</ul>',
openLI: '<li data-level="H<%= level %>"><a href="#<%= anchor %>"><%= text %></a>',
closeLI: '</li>',
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
2013-03-07 - v0.2.0 - Second official release. Minor changes. 2013-03-07 - v0.1.0 - First official release.
FAQs
Linkify HTML headers and generate a TOC.
The npm package toc receives a total of 1,496 weekly downloads. As such, toc popularity was classified as popular.
We found that toc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.