mirror of
https://github.com/alrayyes/wiki.git
synced 2025-04-30 14:24:12 +00:00
docs + various polish
This commit is contained in:
parent
b90590b9f4
commit
08f8e3b4a4
49 changed files with 1365 additions and 196 deletions
content/advanced
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Creating your own Quartz components
|
||||
---
|
||||
|
||||
See the [component listing](/tags/component) for a full-list of the Quartz built-in components.
|
|
@ -1,3 +1,20 @@
|
|||
---
|
||||
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
|
||||
```ts
|
||||
export type QuartzTransformerPluginInstance = {
|
||||
name: string
|
||||
textTransform?: (src: string | Buffer) => string | Buffer
|
||||
markdownPlugins?: () => PluggableList
|
||||
htmlPlugins?: () => PluggableList
|
||||
externalResources?: () => Partial<StaticResources>
|
||||
}
|
||||
```
|
||||
|
||||
## Filters
|
||||
|
||||
## Emitters
|
Loading…
Add table
Add a link
Reference in a new issue