diff --git a/README.md b/README.md
index df140562..fc0d35bc 100644
--- a/README.md
+++ b/README.md
@@ -16,14 +16,7 @@ Browse the latest editor API at [`monaco.d.ts`](https://github.com/Microsoft/mon
## Issues
-Please mention the version of the editor when creating issues and the browser you're having trouble in.
-
-This repository contains only the scripts to glue things together, please create issues against the actual repositories where the source code lives:
- * [monaco-editor-core](https://github.com/Microsoft/vscode) -- (the editor itself)
- * [monaco-typescript](https://github.com/Microsoft/monaco-typescript) -- (JavaScript or TypeScript language support)
- * [monaco-css](https://github.com/Microsoft/monaco-css) -- (CSS, LESS or SCSS advanced language support)
- * [monaco-json](https://github.com/Microsoft/monaco-json) -- (JSON advanced language support)
- * [monaco-languages](https://github.com/Microsoft/monaco-languages) -- (bat, coffee script, cpp, csharp, fsharp, go, ini, jade, lua, objective-c, powershell, python, r, ruby, sql, swift, vb or xml colorizers)
+Please mention the version of the editor when creating issues and the browser you're having trouble in. Create issues in this repository.
## Known issues
In IE, the editor must be completely surrounded in the body element, otherwise the hit testing we do for mouse operations does not work. You can inspect this using F12 and clicking on the body element and confirm that visually it surrounds the editor.
@@ -144,6 +137,11 @@ Create a Monarch tokenizer [here](https://microsoft.github.io/monaco-editor/mona
> Q: I see the warning "Could not create web worker". What should I do?
> A: HTML5 does not allow pages loaded on `file://` to create web workers. Please load the editor with a web server on `http://` or `https://` schemes. Please also see the cross domain case above.
+
+> Q: Is the editor supported in mobile browsers or mobile web app frameworks?
+> A: No.
+
+
## Dev
### Cheat Sheet
diff --git a/test/colorize.html b/test/colorize.html
new file mode 100644
index 00000000..1ee4bb31
--- /dev/null
+++ b/test/colorize.html
@@ -0,0 +1,55 @@
+
+
+
+/* Some example CSS */
+
+@import url("something.css");
+
+body {
+ margin: 0;
+ padding: 3em 6em;
+ font-family: tahoma, arial, sans-serif;
+ color: #000;
+}
+
+#navigation a {
+ font-weight: bold;
+ text-decoration: none !important;
+}
+
+h1 {
+ font-size: 2.5em;
+}
+
+h2 {
+ font-size: 1.7em;
+}
+
+h1:before, h2:before {
+ content: "some contents";
+}
+
+code {
+ font-family: courier, monospace;
+ font-size: 80%;
+ color: #418A8A;
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/test/index.html b/test/index.html
index 0ef435df..3308e1fa 100644
--- a/test/index.html
+++ b/test/index.html
@@ -18,6 +18,8 @@ Jump to:
|
[scrollable element]
|
+[colorize element]
+ |
[cross origin broken]
|
[cross origin good]
diff --git a/website/index.html b/website/index.html
index 87627ebd..09be6c8b 100644
--- a/website/index.html
+++ b/website/index.html
@@ -55,6 +55,8 @@
It is licensed under the MIT License and supports IE 9/10/11, Edge, Chrome, Firefox, Safari and Opera.
+The Monaco editor is not supported in mobile browsers or mobile web frameworks.
+Find more information at the Monaco Editor repo.