Merge pull request #1153 from shivanshs9/issue-typos
Fixed typos in website page and CHANGELOGpull/1226/head
commit
d9ca7d5c2a
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,4 +1,4 @@
|
|||
# Monaco Editor Change log
|
||||
# Monaco Editor Changelog
|
||||
|
||||
## [0.14.3] (17.08.2018)
|
||||
* Fixes TypeScript/JavaScript coloring of regular expressions https://github.com/Microsoft/monaco-editor/issues/1009
|
||||
|
@ -165,7 +165,7 @@ Contributions to `monaco-languages`:
|
|||
### Notable Fixes
|
||||
* No longer use CSS class `.row` for command palette to avoid CSS conflicts with Bootstrap.
|
||||
* Fix Accessibility Help Dialog accessible issue on IE/Edge.
|
||||
* Fix Find Widget CSS compability issues with IE11.
|
||||
* Fix Find Widget CSS compatibility issues with IE11.
|
||||
* Toggle Block Comment can remove extra whitespaces.
|
||||
|
||||
### Thank you
|
||||
|
@ -195,7 +195,7 @@ Contributions to `monaco-languages`:
|
|||
* Support for the internal snippet syntax **has been discontinued** and snippet must now use the official, TextMate-like syntax. Find its grammar and samples [here](https://code.visualstudio.com/docs/editor/userdefinedsnippets#_snippet-syntax).
|
||||
* Changed `IModel.findMatches` to accept a list of word separators.
|
||||
* Changed the shape of the `IModelContentChangedEvent` emitted via `IModel.onDidChangeContent` to **now contain a batch** of all the changes that the model had.
|
||||
* No longer using `transform: translate3d`, now using `will-change: transform` for browser layer hinting. Use the `disableLayerHinting` option if you have any trouble with browser layers (bluriness or high GPU memory usage).
|
||||
* No longer using `transform: translate3d`, now using `will-change: transform` for browser layer hinting. Use the `disableLayerHinting` option if you have any trouble with browser layers (blurriness or high GPU memory usage).
|
||||
* Simplified wrapping settings: `wordWrap`, `wordWrapColumn` and `wordWrapMinified`.
|
||||
|
||||
### API changes
|
||||
|
@ -340,10 +340,10 @@ Contributions to `monaco-languages`:
|
|||
- removed `model.setMode()`, as `IMode` will soon disappear from the API.
|
||||
|
||||
### Debt work
|
||||
- Removed html, razor, php and handlebars from `monaco-editor-core`:
|
||||
- Removed HTML, razor, PHP and handlebars from `monaco-editor-core`:
|
||||
- the `monaco-editor-core` is now finally language agnostic.
|
||||
- coloring for html, razor, php and handlebars is now coming in from `monaco-languages`.
|
||||
- language smarts for html, razor and handlebars now comes from `monaco-html`.
|
||||
- coloring for HTML, razor, PHP and handlebars is now coming in from `monaco-languages`.
|
||||
- language smarts for HTML, razor and handlebars now comes from `monaco-html`.
|
||||
- Packaging improvements:
|
||||
- thanks to the removal of the old languages from `monaco-editor-core`, we could improve the bundling and reduce the number of .js files we ship.
|
||||
- we are thinking about simplifying this further in the upcoming releases.
|
||||
|
@ -418,7 +418,7 @@ Contributions to `monaco-languages`:
|
|||
- Broken configurations (loading from `file://` or misconfigured cross-domain loading) now load the web worker code in the UI thread. This caused a **breaking change** in the behaviour of `monaco.editor.createWebWorker`
|
||||
- The right-pointing mouse pointer is oversized in high DPI - [issue](https://github.com/Microsoft/monaco-editor/issues/5)
|
||||
- The editor functions now correctly when hosted inside a `position:fixed` element.
|
||||
- Cross origin configuration is now picked up (as advertised in documentation from MonacoEnvironment)
|
||||
- Cross-origin configuration is now picked up (as advertised in documentation from MonacoEnvironment)
|
||||
|
||||
[0.14.3]: https://github.com/Microsoft/monaco-editor/compare/v0.14.2...v0.14.3
|
||||
[0.14.2]: https://github.com/Microsoft/monaco-editor/compare/v0.14.1...v0.14.2
|
||||
|
|
|
@ -10,7 +10,7 @@ More self-contained samples are available at [monaco-editor-samples](https://git
|
|||
|
||||
### Option 1: Using the Monaco Editor Loader Plugin
|
||||
|
||||
This is the easiest method, and it allows for options to be passed in to 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 Loader Plugin](https://github.com/Microsoft/monaco-editor-webpack-plugin), which is a community authored plugin.
|
||||
|
||||
* `index.js`
|
||||
```js
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
<div id="documentation">
|
||||
<h2>Monarch: create declarative syntax highlighters using JSON</h2>
|
||||
<p>This document describes how to create a syntax highlighter using the
|
||||
Monarch library. This library allows you to specify an efficient syntax highlighter, using a declarative lexical specification (written as a JSON value). The specification is expressive enough to specify sophisticated highlighters with complex state transitions, dynamic brace matching, auto completion, other language embeddings, etc. as shown in the 'advanced' topic sections of this document. On a first read, it is safe to skip any section or paragraph marked as <span class="adv">(Advanced)</span> since many of the advanced features are rarely used in most language definitions.<br>
|
||||
Monarch library. This library allows you to specify an efficient syntax highlighter, using a declarative lexical specification (written as a JSON value). The specification is expressive enough to specify sophisticated highlighters with complex state transitions, dynamic brace matching, auto-completion, other language embeddings, etc. as shown in the 'advanced' topic sections of this document. On a first read, it is safe to skip any section or paragraph marked as <span class="adv">(Advanced)</span> since many of the advanced features are rarely used in most language definitions.<br>
|
||||
– Daan Leijen.
|
||||
</p>
|
||||
|
||||
|
|
Loading…
Reference in New Issue