From 3c9acade72a317ac637e6f9fb6eaad646a596701 Mon Sep 17 00:00:00 2001 From: Anna Bulenkova Date: Tue, 9 Dec 2014 19:23:04 +0100 Subject: [PATCH] Markdown fix --- tutorials/working_with_editor.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tutorials/working_with_editor.md b/tutorials/working_with_editor.md index 95236c0ba..0b288bcff 100644 --- a/tutorials/working_with_editor.md +++ b/tutorials/working_with_editor.md @@ -35,14 +35,11 @@ represents the contents of a text file loaded into memory, and possibly opened i text editor. Line breaks in the document text are always normalized as single \n characters, and are converted to proper format when the document is saved. [Document] (https://github.com/JetBrains/intellij-community/blob/master/platform/core-api/src/com/intellij/openapi/editor/Document.java) -can be obtained by calling -```Document document = editor.getDocument(); -``` +can be obtained by calling ```Document document = editor.getDocument();``` ##Models Different services for controlling and getting information about visible areas the editor can be accessible set of getters, e.g. -```final SelectionModel selectionModel = editor.getSelectionModel(); -``` +```final SelectionModel selectionModel = editor.getSelectionModel();``` Editor model classes are located in [editor] (https://github.com/JetBrains/intellij-community/tree/master/platform/editor-ui-api/src/com/intellij/openapi/editor)