From 08f8e3b4a4879dd7c91c16fbce80c4f2bc5e357f Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 10 Jul 2023 02:32:24 +0000
Subject: [PATCH] docs + various polish

---
 content/advanced/making plugins.md |   19 ++++++++++++++++++-
 1 files changed, 18 insertions(+), 1 deletions(-)

diff --git a/content/advanced/making plugins.md b/content/advanced/making plugins.md
index 4e644a7..bdd9194 100644
--- a/content/advanced/making plugins.md
+++ b/content/advanced/making plugins.md
@@ -1,3 +1,20 @@
 ---
 title: Making your own plugins
----
\ No newline at end of file
+---
+
+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
\ No newline at end of file

--
Gitblit v1.10.0