rehype-auto-ads
v1.1.5
Published
rehype.js plugin that automatically inserts Google Adsense (and theoretically any ad service) code
Downloads
433
Maintainers
Readme
rehype-auto-ads
rehype.js plugin that automatically inserts Google Adsense (and theoretically any ad service) code.
This plugin inserts an ad code for each specified number of paragraphs. For example, insert Google Adsense display ad code every 5 paragraphs.
(Unlike Google Adsense's automatic ads) no ad code is inserted into blockquote or list items!
Install
npm install rehype-auto-ads
Usage
import remarkParse from "remark-parse";
import rehypeStringify from "rehype-stringify";
import remarkRehype from "remark-rehype";
import { unified } from "unified";
import rehypeAutoAds from "rehype-auto-ads";
const options = {
adCode: "<AD_CODE>",
paragraphInterval: 2
};
const processor = unified()
.use(remarkParse)
.use(remarkRehype)
.use(rehypeAutoAds, options)
.use(rehypeStringify);
const markdown = `
# Hello, world!
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
`;
processor.process(markdown).then((result) => {
console.log(result.toString());
});
The above code will output the following:
<h1>Hello, world!</h1>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p><AD_CODE>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p><AD_CODE>
Options
export interface RehypeAutoAdsOptions {
adCode: string;
countFrom?: number;
paragraphInterval?: number;
shouldInsertAd?: (
vfile: VFile,
previousNode: Root | ElementContent | Doctype,
nextNode: Root | ElementContent | Doctype | null,
ancestors: (Root | Element)[]
) => boolean;
}
adCode
The ad code to be inserted. For example, Google Adsense display ad code.
countFrom
Initial value of paragraph counter. In other words, this value should be set to the value of paragraphInterval
minus the number of paragraphs you want to insert the first ad.
If you want to insert ad code from the third paragraph and every 5 paragraphs, set this to 2
.
Default: 0
paragraphInterval
The value indicating how many paragraphs to insert advertising code. For example, specifying 5 will insert ads every 5 paragraphs.
Default: 5
shouldInsertAd
Function to determine whether to insert an ad code. If this function returns true
, the ad code will be inserted. The default implementation always returns true
.
Parameters
vfile
: vfile of the current file.previousNode
: The previous node of the insertion point.nextNode
: The next node of the insertion point.ancestors
: Ancestors of thepreviousNode
.
Development
npm install
Build
npm run build
Format and Lint
npm run format
npm run lint
Test
npm run test
Pull Requests
This repository uses Changesets to manage versioning and releases. When creating a pull request, please run the Changesets CLI and commit the changeset file.
npx changeset