@@ -136,12 +136,18 @@ popover: {
136
136
}
137
137
{% endhighlight %}
138
138
139
- ### Custom placeholder
140
- You can define a placeholder with the ` placeholder ` option.
139
+ ### Blockquote breaking level
140
+ You can set blockquote breaking level with ` blockquoteBreakingLevel ` option.
141
+
142
+ Each configurable breaking level means:
143
+
144
+ * 0 - No break, the new paragraph remains inside the quote.
145
+ * 1 - Break the first blockquote in the ancestors list.
146
+ * 2 - Break all blockquotes, so that the new paragraph is not quoted. (default)
141
147
142
148
{% highlight javascript %}
143
149
$('#summernote').summernote({
144
- placeholder: 'write here...'
150
+ blockquoteBreakingLevel: 2
145
151
});
146
152
{% endhighlight %}
147
153
@@ -172,6 +178,15 @@ $('#summernote').summernote({
172
178
});
173
179
{% endhighlight %}
174
180
181
+ ### Custom placeholder
182
+ You can define a placeholder with the ` placeholder ` option.
183
+
184
+ {% highlight javascript %}
185
+ $('#summernote').summernote({
186
+ placeholder: 'write here...'
187
+ });
188
+ {% endhighlight %}
189
+
175
190
### Dialogs
176
191
Dialogs can be placed in ` body ` , not within Summernote. If you're using Summernote within a modal dialog, please set this option as ` true ` .
177
192
{% highlight javascript %}
@@ -204,20 +219,12 @@ $('#summernote').summernote({
204
219
});
205
220
{% endhighlight %}
206
221
207
- {% include ad-doc.html %}
208
-
209
- ### Blockquote breaking level
210
- You can set blockquote breaking level with ` blockquoteBreakingLevel ` option.
211
-
212
- Each configurable breaking level means:
213
-
214
- * 0 - No break, the new paragraph remains inside the quote.
215
- * 1 - Break the first blockquote in the ancestors list.
216
- * 2 - Break all blockquotes, so that the new paragraph is not quoted. (default)
217
-
222
+ ### Disable TAB
223
+ You can disable TAB/Shift+Tab intereaction with the ` tabDisable ` option.
224
+ This will allow tabbing through fields in Forms.
218
225
{% highlight javascript %}
219
226
$('#summernote').summernote({
220
- blockquoteBreakingLevel: 2
227
+ tabDisable: false
221
228
});
222
229
{% endhighlight %}
223
230
0 commit comments