Sub-package for
postdfm
.Provides structure and utilities for making plugins that can modify the structure provided by
@postdfm/ast
.
# npm
$ npm install @postdfm/plugin
# yarn
$ yarn add @postdfm/plugin
import { Plugin } from "@postdfm/plugin";
class SomePlugin extends Plugin {
install(hooks) {
hooks.string.tap(ast => {
// manipulate AST here
}
// all AST types can be manipulated, see AST.ASTTypes
// also available:
// - "after" hook for certain types
hooks.after.object.tap(ast => {
// manipulate AST here
})
// - "all" hook for everything - excludes "after" hooks
hooks.all.tap(ast => {
// manipulate AST here
})
}
}
See postdfm
for more information, or the generated typedoc
documentation here.
Bug reports and feature requests are greatly appreciated, as are pull requests.
Please see the Contributing Guide for instructions on how to contribute to this project.
Licensed under the MIT License.