📦 theme-live-codeblock
This theme provides a @theme/CodeBlock
component that is powered by react-live. You can read more on interactive code editor documentation.
- npm
- Yarn
- pnpm
npm install --save @docusaurus/theme-live-codeblock
yarn add @docusaurus/theme-live-codeblock
pnpm add @docusaurus/theme-live-codeblock
Configuration
docusaurus.config.js
module.exports = {
plugins: ['@docusaurus/theme-live-codeblock'],
themeConfig: {
liveCodeBlock: {
/**
* La position du terrain de jeu en direct, au-dessus ou au-dessous de l'éditeur
* Valeurs possibles : "top" | "bottom"
*/
playgroundPosition: 'bottom',
},
},
};