diff --git a/docs/guides/plugins.md b/docs/guides/plugins.md
index b186e7f25..5fed89711 100644
--- a/docs/guides/plugins.md
+++ b/docs/guides/plugins.md
@@ -10,7 +10,7 @@ Slate encourages you to break up code into small, reusable modules that can be s
## What Are Plugins?
-Slate's plugins are simply a collection of functions that all contribute to a shared behavior—each with a specific name and set of arguments. For a full list of the arguments, check out the [`Plugins` reference](../reference/slate-react/plugins).
+Slate's plugins are simply a collection of functions that all contribute to a shared behavior—each with a specific name and set of arguments. For a full list of the arguments, check out the [`Plugins` reference](../reference/slate-react/plugins.md).
Here's a really simple plugin:
@@ -31,13 +31,24 @@ Here's a really simple plugin:
It focuses the editor and selects everything when it is clicked, and it blurs the editor what esc is pressed.
-Notice how it's able to define a set of behaviors that work together to form a single "feature" in the editor. That's what makes Slate's plugins a powerful for of encapsulation, so that your codebase doesn't become mired in complexity.
+Notice how it's able to define a set of behaviors that work together to form a single "feature" in the editor. That's what makes Slate's plugins a powerful form of encapsulation.
## The Plugins "Stack"
Slate's editor takes a list of plugins as one of its arguments. We refer to this list as the plugins "stack". It is very similar to "middleware" from Express or Koa.
+```js
+const plugins = [
+ ...
+]
+
+
+```
+
When the editor needs to handle a DOM event, or to decide what to render, it will loop through the plugins stack, invoking each plugin in turn. Plugins can choose to handle the request, in which case the editor will break out of the loop. Or they can ignore it, and they will be skipped as the editor proceeds to the next plugin in the stack.
Because of this looping, plugins are **order-sensitive**! This is very important. The earlier in the stack, the more preference the plugin has, since it can react before the others after it. If two plugins both try to handle the same event, the earlier plugin will "win".
@@ -47,7 +58,9 @@ Because of this looping, plugins are **order-sensitive**! This is very important
If you put Slate on the page without adding any of your own plugins, it will still behave like you'd expect a rich-text editor to. That's because it has its own "core" logic. And that core logic is implemented with its own core plugins.
-The core plugins define the common editing behaviors like splitting the current block when enter is pressed, or inserting a string of text when the user pastes from their clipboard. These are behaviors that all rich-text editors exhibit, and that don't make sense for userland to have to re-invent for every new editor.
+The core plugins doesn't have any assumptions about your schema, or what types of formatting you want to allow. But they do define the common editing behaviors like splitting the current block when enter is pressed, or inserting a string of text when the user pastes from their clipboard.
+
+These are behaviors that all rich-text editors exhibit, and that don't make sense for userland to have to re-invent for every new editor.
There are two core plugins: the "before plugin" and the "after plugin". They get their names because one of them is before all other plugins in the stack, and the other is after them.
@@ -56,6 +69,40 @@ For the most part you don't need to worry about the core plugins. The before plu
_To learn more, check out the [Core Plugin reference](../reference/slate-react/core-plugin.md)._
+## The "Editor" Plugin
+
+If you've read through the [`` reference](../reference/slate-react/editor.md) you'll notice that the editor itself has handler like `onKeyDown`, `onClick`, etc. just like plugins.
+
+```js
+const plugins = [
+ ...
+]
+
+
+```
+
+This is nice because it makes simple cases easier, and nicely mimics the native DOM API of `` and `