fix list indentation
authorZeke Sikelianos <zeke@sikelianos.com>
Thu, 23 Jun 2016 17:36:16 +0000 (10:36 -0700)
committerZeke Sikelianos <zeke@sikelianos.com>
Thu, 23 Jun 2016 17:36:16 +0000 (10:36 -0700)
docs/api/web-contents.md

index 610fa2a..ce09487 100644 (file)
@@ -360,25 +360,27 @@ Returns:
     able to perform the corresponding action. See more about this below.
 
 The `mediaFlags` is an object with the following properties:
-  * `inError` Boolean - Whether the media element has crashed.
-  * `isPaused` Boolean - Whether the media element is paused.
-  * `isMuted` Boolean - Whether the media element is muted.
-  * `hasAudio` Boolean - Whether the media element has audio.
-  * `isLooping` Boolean - Whether the media element is looping.
-  * `isControlsVisible` Boolean - Whether the media element's controls are
-    visible.
-  * `canToggleControls` Boolean - Whether the media element's controls are
-    toggleable.
-  * `canRotate` Boolean - Whether the media element can be rotated.
+
+* `inError` Boolean - Whether the media element has crashed.
+* `isPaused` Boolean - Whether the media element is paused.
+* `isMuted` Boolean - Whether the media element is muted.
+* `hasAudio` Boolean - Whether the media element has audio.
+* `isLooping` Boolean - Whether the media element is looping.
+* `isControlsVisible` Boolean - Whether the media element's controls are
+  visible.
+* `canToggleControls` Boolean - Whether the media element's controls are
+  toggleable.
+* `canRotate` Boolean - Whether the media element can be rotated.
 
 The `editFlags` is an object with the following properties:
-  * `canUndo` Boolean - Whether the renderer believes it can undo.
-  * `canRedo` Boolean - Whether the renderer believes it can redo.
-  * `canCut` Boolean - Whether the renderer believes it can cut.
-  * `canCopy` Boolean - Whether the renderer believes it can copy
-  * `canPaste` Boolean - Whether the renderer believes it can paste.
-  * `canDelete` Boolean - Whether the renderer believes it can delete.
-  * `canSelectAll` Boolean - Whether the renderer believes it can select all.
+
+* `canUndo` Boolean - Whether the renderer believes it can undo.
+* `canRedo` Boolean - Whether the renderer believes it can redo.
+* `canCut` Boolean - Whether the renderer believes it can cut.
+* `canCopy` Boolean - Whether the renderer believes it can copy
+* `canPaste` Boolean - Whether the renderer believes it can paste.
+* `canDelete` Boolean - Whether the renderer believes it can delete.
+* `canSelectAll` Boolean - Whether the renderer believes it can select all.
 
 Emitted when there is a new context menu that needs to be handled.