8
0
Quellcode durchsuchen

Minor improvement.

Piotrek Koszuliński vor 6 Jahren
Ursprung
Commit
86208f65e7
1 geänderte Dateien mit 1 neuen und 3 gelöschten Zeilen
  1. 1 3
      docs/features/placeholder.md

+ 1 - 3
docs/features/placeholder.md

@@ -19,9 +19,7 @@ There are two different ways of configuring the editor placeholder text:
 Set the `placeholder` attribute on a `<textarea>` element passed to the `Editor.create()` method (for instance {@link module:editor-classic/classiceditor~ClassicEditor.create `ClassicEditor.create()`}) to configure the placeholder:
 
 ```html
-<textarea id="editor" placeholder="Type the content here!">
-	<p>Editor content</p>
-</textarea>
+<textarea id="editor" placeholder="Type the content here!"></textarea>
 ```
 
 ```js