Răsfoiți Sursa

update readme

Alex Dima 9 ani în urmă
părinte
comite
f2b9092438
1 a modificat fișierele cu 10 adăugiri și 10 ștergeri
  1. 10 10
      README.md

+ 10 - 10
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?<br/>
+> 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.
 
 <br/>
-* 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?<br/>
+> A: None. The Monaco Editor is a library and it reflects directly the source code.
 
 <br/>
-* 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?<br/>
+> A: No.
 
 <br/>
-* 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?<br/>
+> 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).
 
 <br/>
-* 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`?<br/>
+> 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)