Skip to content

Commit

Permalink
Fix incorrect indentation from code examples
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins committed Oct 1, 2024
1 parent 7876aa4 commit d5c3706
Show file tree
Hide file tree
Showing 3 changed files with 261 additions and 262 deletions.
10 changes: 5 additions & 5 deletions 00-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Run the script below when document is ready!

{% highlight javascript %}
$(document).ready(function() {
$('#summernote').summernote();
$('#summernote').summernote();
});
{% endhighlight %}

Expand Down Expand Up @@ -192,10 +192,10 @@ If you set focus option, cursor will focus editable area after initialize Summer

{% highlight javascript %}
$('#summernote').summernote({
height: 300, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
focus: true // set focus to editable area after initializing summernote
height: 300, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
focus: true // set focus to editable area after initializing summernote
});
{% endhighlight %}

Expand Down
Loading

0 comments on commit d5c3706

Please sign in to comment.