📦 remark-plugin-side-editor
Injects a Edit
button to open the snippet source in a side editor.
http://localhost:3000
graph G {
kspacey -- swilliams;
swilliams -- kbacon;
bpitt -- kbacon;
hford -- lwilson;
lwilson -- kbacon;
}
Usage​
Read the Side Editor documentation.
Configuration​
Install the side editor theme, then install the remark plugin
- npm
- Yarn
- pnpm
npm install @rise4fun/docusaurus-remark-side-editor
yarn add @rise4fun/docusaurus-remark-side-editor
pnpm add @rise4fun/docusaurus-remark-side-editor
and add to your docusaurus.configuration.js
file as other remark plugins.
const config = {
plugins: [
...,
["@rise4fun/docusaurus-remark-side-editor", {
}]
]
}