Monaco Editor for DonorCore
===========================

Due to WordPress.org repository guidelines, we cannot include the full Monaco Editor library in this plugin distribution, nor can we load it from a remote CDN (jsdelivr).

To enable the code editor features (CSS/JS editor), please download Monaco Editor manually:

1. Download Monaco Editor v0.44.0 (or latest compatible) from:
   https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.44.0.tgz

2. Extract the package.

3. Copy the `min` folder from the extracted package into this directory.

Structure should look like this:
/assets/vendor/monaco-editor/
  ├── README.txt
  └── min/
      ├── vs/
          ├── loader.js
          ├── editor/
          ├── language/
          └── ...

The plugin is configured to look for the editor at:
`assets/vendor/monaco-editor/min/vs`

If these files are missing, the editor may default to a simple text area or fail to load the advanced code editing features.
