From 78501235552959649d6d5e2924865b0898a31afc Mon Sep 17 00:00:00 2001 From: Scott Gallant Date: Thu, 29 Jun 2023 10:31:46 -0300 Subject: [PATCH] Update README.md - removed boilerplate copy --- README.md | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/README.md b/README.md index d465c3714..9de5161f9 100644 --- a/README.md +++ b/README.md @@ -28,25 +28,3 @@ TINA=../path/to/tinacms TINA_WATCH=@tinacms/forms,react-tinacms-inline > > This will only work for packages loaded by webpack. That means that environments which don't use > webpack (i.e. SSR builds) will not use this alias. - -## Copy-able Code Blocks - -A "Copy" button can be added to Code Blocks by adding the `copy` tag to fenced code blocks. - -Non-copyable JS - -```js -const christmastPresent = new Banana() -``` - -Copyable JS - -```js,copy -const christmastPresent = new Banana() -``` - -Copyable Text - - ```copy - Hello World - ```