Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
esdoc-plugin-transform-html
Advanced tools
ESDoc plugin to transform generated HTML using the Cheerio
API.
npm install --save-dev esdoc-plugin-transform-html
Add the esdoc-plugin-transform-html
to your ESDoc config...
{
...
"plugins": [
{
"name": "esdoc-plugin-transform-html",
"option": ...
}
]
}
The option
property can either be an Object
, String
, or Array<String|Object>
...
The simplest use case is to pass a String
:
{
...
"plugins": [
{
"name": "esdoc-plugin-transform-html",
"option": "./path/to/transform.js"
}
]
}
Where ./path/to/transform.js
is a path (relative to process.cwd()
) to a javascript module to load.
This javascript module should export a single function. This function will be used to transform the HTML. See the example below.
Optionally, you can pass an array of javascript modules to load:
{
{
"name": "esdoc-plugin-transform-html",
"option": ["./path/to/transform1.js", "./path/to/transform2.js"]
}
}
For more flexibility, you can pass an Object
or Array<Object>
:
{
...
"plugins": [
{
"name": "esdoc-plugin-transform-html",
"option": [
{
"includes": "manual/**/*",
"excludes": "foo.html",
"transforms": ["./path/to/transform1.js", "./path/to/transform2.js"]
},
{
"includes": ["some/glob/**/*", "another/glob/*"],
"excludes": "foo.html",
"transforms": "./path/to/anotherTransform.js",
"throwOnError" false
},
]
}
]
}
If you provide an Array
, each option object within that array will be applied sequentially.
Option | Behavior | Default |
---|---|---|
includes | An Array<String> or String of glob patterns to include. | **/* |
excludes | An Array<String> or String of glob patterns to exclude. | |
transforms | An Array<String> or String of relative paths to javascript modules to load. | |
throwOnError | If true , will raise any exceptions thrown by the transformer. If false , the exception is only logged. | true |
/**
* transform function invoked by esdoc-plugin-transform-html
* @param {Object} args
* @param {String} args.$ - the Cheerio instance
* @param {Object} args.config - the global esdoc config
* @param {Object} args.options - the current options object
* @param {String} args.fileName - the current file being processed
* @param {String} args.is - a convenience to check if the current fileName matches a glob pattern
* @this {Cheerio} the Cheerio instance (interchangeable with args.$)
*/
module.exports = function transform({ $, config, options, fileName, is }) {
// Cheerio's interface is much like jQuery's
// See https://cheerio.js.org/ for more details
// we could also use `$('title')` here, if for example this function was bound to another context, or you prefer that syntax
const $title = this('title');
// get the title but strip off everything after `|`
let title = $title.text().replace(/\s+\|.*/, '');
// use the h1 for the title on manual and index pages
if (is('manual/**/*', 'index.html')) {
title = this('h1').text() || title;
}
// replace `Index` with `SDK References` on the `indentifiers` page
if (is('identifiers.html')) {
title = title.replace(/^Index/, 'SDK References');
}
// append the `config.title`
title += ` | ${config.title}`;
// update the title
$title.text(title);
// open all external links in a new tab
this([
'a[href^="http://"]',
'a[href^="https://"]',
'a[href^="//"]',
'a[href][ref*="external"]'
].join(',')).attr('target', '_blank');
};
FAQs
ESDoc plugin to transform generated HTML
The npm package esdoc-plugin-transform-html receives a total of 0 weekly downloads. As such, esdoc-plugin-transform-html popularity was classified as not popular.
We found that esdoc-plugin-transform-html 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.