From 2623a5e68976d41f1d0a49a0c010994c958296cd Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Tue, 25 Apr 2017 15:40:05 -0500 Subject: [PATCH] Fix typo in README with missing colons --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7974b73..8d290f7 100644 --- a/README.md +++ b/README.md @@ -74,9 +74,9 @@ simplemde.value("This text will appear in the editor"); - **delay**: Delay between saves, in milliseconds. Defaults to `10000` (10s). - **uniqueId**: You must set a unique string identifier so that SimpleMDE can autosave. Something that separates this from other instances of SimpleMDE elsewhere on your website. - **blockStyles**: Customize how certain buttons that style blocks of text behave. - - **bold** Can be set to `**` or `__`. Defaults to `**`. - - **code** Can be set to ```` ``` ```` or `~~~`. Defaults to ```` ``` ````. - - **italic** Can be set to `*` or `_`. Defaults to `*`. + - **bold**: Can be set to `**` or `__`. Defaults to `**`. + - **code**: Can be set to ```` ``` ```` or `~~~`. Defaults to ```` ``` ````. + - **italic**: Can be set to `*` or `_`. Defaults to `*`. - **element**: The DOM element for the textarea to use. Defaults to the first textarea on the page. - **forceSync**: If set to `true`, force text changes made in SimpleMDE to be immediately stored in original textarea. Defaults to `false`. - **hideIcons**: An array of icon names to hide. Can be used to hide specific icons shown by default without completely customizing the toolbar.