docs + various polish
This commit is contained in:
		
							parent
							
								
									b90590b9f4
								
							
						
					
					
						commit
						08f8e3b4a4
					
				
					 49 changed files with 1365 additions and 196 deletions
				
			
		| 
						 | 
				
			
			@ -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