diff options
| author | m5o <[email protected]> | 2018-01-19 18:30:17 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-01-19 19:30:17 +0200 |
| commit | 0f53402fc041fd7a10571711a571df0df50892d3 (patch) | |
| tree | 2ef72556bbb003698362cd1f1a41776fd7a55552 /docs/4.0/getting-started | |
| parent | ee4988164ea6e9e82722891a838934552f5b6634 (diff) | |
| download | bootstrap-0f53402fc041fd7a10571711a571df0df50892d3.tar.xz bootstrap-0f53402fc041fd7a10571711a571df0df50892d3.zip | |
Use Jekyll's markdownify filter instead of a custom plugin (#25319)
Diffstat (limited to 'docs/4.0/getting-started')
| -rw-r--r-- | docs/4.0/getting-started/introduction.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/4.0/getting-started/introduction.md b/docs/4.0/getting-started/introduction.md index 6a2428704..48e6dc549 100644 --- a/docs/4.0/getting-started/introduction.md +++ b/docs/4.0/getting-started/introduction.md @@ -39,7 +39,7 @@ Curious which components explicitly require jQuery, our JS, and Popper.js? Click <details> <summary class="text-primary mb-3">Show components requiring JavaScript</summary> -{% markdown %} +{% capture markdown %} - Alerts for dismissing - Buttons for toggling states and checkbox/radio functionality - Carousel for all slide behaviors, controls, and indicators @@ -49,7 +49,8 @@ Curious which components explicitly require jQuery, our JS, and Popper.js? Click - Navbar for extending our Collapse plugin to implement responsive behavior - Tooltips and popovers for displaying and positioning (also requires [Popper.js](https://popper.js.org/)) - Scrollspy for scroll behavior and navigation updates -{% endmarkdown %} +{% endcapture %} +{{ markdown | markdownify }} </details> ## Starter template |
