quartz-research-note/content/advanced/making plugins.md
2023-07-22 17:27:41 -07:00

527 B

title
Making your own plugins

This part of the documentation will assume you have some basic coding knowledge and will include code snippets that describe the interface of what Quartz plugins should look like.

Transformers

export type QuartzTransformerPluginInstance = {
  name: string
  textTransform?: (src: string | Buffer) => string | Buffer
  markdownPlugins?: () => PluggableList
  htmlPlugins?: () => PluggableList
  externalResources?: () => Partial<StaticResources>
}

Filters

Emitters