You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: releasenotes.md
+20
Original file line number
Diff line number
Diff line change
@@ -212,6 +212,26 @@ This release improves several aspects of OpenAPI (Swagger) specification parsing
212
212
213
213
However, OpenAPI spec parsing should still be considered experimental.
214
214
215
+
### Multiline Callouts
216
+
217
+
The built-in callouts filter now supports multi-line callouts using Markdown's blockquote syntax. A blockquote must be set off from paragraph text by blank lines before and after. Within the blockquote, each line must start with `> `. (The space is optional but recommended.) For example:
218
+
219
+
```md
220
+
Some paragraph text.
221
+
222
+
> **Tip:** This begins a multiline callout.
223
+
>
224
+
> - It can have lists.
225
+
> - Indentation does not count the space in the `> ` as part of its
226
+
> requirements, so things that would normally need to be indented 4 spaces
227
+
> must be indented 5 instead.
228
+
> - That's just Markdown syntax for you.
229
+
230
+
More paragraph text
231
+
```
232
+
233
+
Build the [examples](examples/) to see it in action and to see some samples of specific edge cases.
234
+
215
235
## Bug Fixes and Other Cleanup
216
236
217
237
-`--skip_preprocessor` (when using a config file) works again. It had been broken since v0.40.0.
0 commit comments