From 97da96fa8c6278d730cc32908ab38d22fa9bab73 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Tue, 16 Nov 2021 23:01:55 +0100 Subject: [PATCH] Move integration guides to `/docs` --- README.md | 4 ++-- {monaco-editor/docs => docs}/integrate-amd.md | 0 {monaco-editor/docs => docs}/integrate-esm.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename {monaco-editor/docs => docs}/integrate-amd.md (100%) rename {monaco-editor/docs => docs}/integrate-esm.md (96%) diff --git a/README.md b/README.md index d09b0a2f..1ed4c9ef 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ It is recommended to develop against the `dev` version, and in production to use ## Documentation - Learn how to integrate the editor with these [complete samples](./samples/). - - [Integrate the AMD version](./monaco-editor/docs/integrate-amd.md). - - [Integrate the ESM version](./monaco-editor/docs/integrate-esm.md) + - [Integrate the AMD version](./docs/integrate-amd.md). + - [Integrate the ESM version](./docs/integrate-esm.md) - Learn how to use the editor API and try out your own customizations in the [playground](https://microsoft.github.io/monaco-editor/playground.html). - Explore the [API docs](https://microsoft.github.io/monaco-editor/api/index.html) or read them straight from [`monaco.d.ts`](https://github.com/Microsoft/monaco-editor/blob/gh-pages/playground/monaco.d.ts.txt). - Read [this guide](https://github.com/Microsoft/monaco-editor/wiki/Accessibility-Guide-for-Integrators) to ensure the editor is accessible to all your users! diff --git a/monaco-editor/docs/integrate-amd.md b/docs/integrate-amd.md similarity index 100% rename from monaco-editor/docs/integrate-amd.md rename to docs/integrate-amd.md diff --git a/monaco-editor/docs/integrate-esm.md b/docs/integrate-esm.md similarity index 96% rename from monaco-editor/docs/integrate-esm.md rename to docs/integrate-esm.md index 2823eda9..aedd4f10 100644 --- a/monaco-editor/docs/integrate-esm.md +++ b/docs/integrate-esm.md @@ -14,9 +14,9 @@ More self-contained samples are available at [monaco-editor-samples](https://git --- -### Option 1: Using the Monaco Editor Loader Plugin +### Option 1: Using the Monaco Editor WebPack Plugin -This is the easiest method, and it allows for options to be passed into the plugin in order to select only a subset of editor features or editor languages. Read more about the [Monaco Editor Loader Plugin](https://github.com/Microsoft/monaco-editor-webpack-plugin), which is a community authored plugin. +This is the easiest method, and it allows for options to be passed into the plugin in order to select only a subset of editor features or editor languages. Read more about the [Monaco Editor WebPack Plugin](https://github.com/Microsoft/monaco-editor-webpack-plugin), which is a community authored plugin. - `index.js`