From f2b90924382fb2fb30d83cd4ab984288def5f276 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Thu, 16 Jun 2016 10:42:50 +0200 Subject: [PATCH] update readme --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea36c58a..f54263fb 100644 --- a/README.md +++ b/README.md @@ -100,24 +100,24 @@ If you are hosting your `.js` on a different domain (e.g. on a CDN) than the HTM ## FAQ -* Q: What is the relationship between VS Code and the Monaco Editor? -* A: The Monaco Editor is generated straight from VS Code's sources with some shims around services the code needs to make it run in a web browser outside of its home. +> Q: What is the relationship between VS Code and the Monaco Editor?
+> A: The Monaco Editor is generated straight from VS Code's sources with some shims around services the code needs to make it run in a web browser outside of its home.
-* Q: What is the relationship between VS Code's version and the Monaco Editor's version? -* A: None. The Monaco Editor is a library and it reflects directly the source code. +> Q: What is the relationship between VS Code's version and the Monaco Editor's version?
+> A: None. The Monaco Editor is a library and it reflects directly the source code.
-* Q: I've written an extension for VS Code, will it work on the Monaco Editor in a browser? -* A: No. +> Q: I've written an extension for VS Code, will it work on the Monaco Editor in a browser?
+> A: No.
-* Q: Why all these web workers and why should I care? -* A: Language services create web workers to compute heavy stuff outside the UI thread. They cost hardly anything in terms of resource overhead and you shouldn't worry too much about them, as long as you get them to work (see above the cross-domain case). +> Q: Why all these web workers and why should I care?
+> A: Language services create web workers to compute heavy stuff outside the UI thread. They cost hardly anything in terms of resource overhead and you shouldn't worry too much about them, as long as you get them to work (see above the cross-domain case).
-* Q: What is this `loader.js`? Can I use `require.js`? -* A: It is an AMD loader that we use in VS Code. Yes. +> Q: What is this `loader.js`? Can I use `require.js`?
+> A: It is an AMD loader that we use in VS Code. Yes. ## License [MIT](https://github.com/Microsoft/monaco-editor/blob/master/LICENSE.md) \ No newline at end of file