diff --git a/src/content/posts/2012/help-test-bootstrap-2-0-3.md b/src/content/posts/2012/help-test-bootstrap-2-0-3.md index b1b3668df..4493859a3 100644 --- a/src/content/posts/2012/help-test-bootstrap-2-0-3.md +++ b/src/content/posts/2012/help-test-bootstrap-2-0-3.md @@ -22,7 +22,7 @@ Just like last time, we're pushing out a release candidate of the 2.0.3 code and - Don't want to check out any code? We're hosting the latest version of the docs here (`http://203rc1.getbootstrap.com`) so you can easily load it up on devices and such for testing. - Load up the new docs in your favorite, or your least favorite, browser or device and start testing. - When you find a bug or have feedback, [open a new issue on GitHub](https://github.com/twbs/bootstrap/issues?sort=created&direction=desc&state=open). Please include as much context and information as possible. If it's a visual bug, please include a screenshot. If it pertains to JavaScript, consider including a [jsfiddle](https://jsfiddle.net/) or [jsbin](https://jsbin.com/). -- If it's a code fix you can make yourself, go ahead and submit a pull request against `2.0.3-wip`. Be sure to read the [Contributing to Bootstrap](https://github.com/twbs/bootstrap/wiki/Contributing-to-Bootstrap) wiki page first though for a bit of insight into our code practices. (Unsure how to submit a pull request? [Learn more here](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests).) +- If it's a code fix you can make yourself, go ahead and submit a pull request against `2.0.3-wip`. Be sure to read the [Contributing to Bootstrap](https://github.com/twbs/bootstrap/wiki/Contributing-to-Bootstrap) wiki page first though for a bit of insight into our code practices. (Unsure how to submit a pull request? [Learn more here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests).) --- diff --git a/src/content/posts/2014/lmvtfy.md b/src/content/posts/2014/lmvtfy.md index aaefecb7c..ba54f3fd9 100644 --- a/src/content/posts/2014/lmvtfy.md +++ b/src/content/posts/2014/lmvtfy.md @@ -7,7 +7,7 @@ video: HEXWRTEbj1I If you've been following the Bootstrap issue tracker lately, you might have noticed the launch of our new bot, [@twbs-lmvtfy](https://github.com/twbs-lmvtfy), on June 15th. After seeing many reports of Bootstrap bugs that ended up actually being caused by folks using invalid HTML, we decided to do what all programmers do when confronted with a repetitive task: [Automate it!](https://github.com/twbs/bootstrap/issues/11984) -To that end, we are excited to announce the availability of **[Let Me Validate That For You (LMVTFY)](https://github.com/cvrebert/lmvtfy)**, an open-source bot that uses the power of the [GitHub webhooks API](https://docs.github.com/en/developers/webhooks-and-events/webhooks/about-webhooks) and the [validator.nu](https://github.com/validator/validator) HTML5 validator to warn about HTML validity errors in live Web examples (e.g. [JS Bins](https://jsbin.com/)) posted to GitHub issues. +To that end, we are excited to announce the availability of **[Let Me Validate That For You (LMVTFY)](https://github.com/cvrebert/lmvtfy)**, an open-source bot that uses the power of the [GitHub webhooks API](https://docs.github.com/en/webhooks/about-webhooks) and the [validator.nu](https://github.com/validator/validator) HTML5 validator to warn about HTML validity errors in live Web examples (e.g. [JS Bins](https://jsbin.com/)) posted to GitHub issues. The bot is generic and can be used for any GitHub project, not just Bootstrap. If you have a front-end Web project on GitHub that gets lots of issue reports, we invite you to try out LMVTFY. diff --git a/src/content/posts/2017/bootstrap-4-alpha-6.md b/src/content/posts/2017/bootstrap-4-alpha-6.md index 4f4ba8d4a..1d3578b01 100644 --- a/src/content/posts/2017/bootstrap-4-alpha-6.md +++ b/src/content/posts/2017/bootstrap-4-alpha-6.md @@ -61,7 +61,7 @@ As mentioned in our last release, the Alpha 5 navbar was a little half baked. Th Here's the rundown on what's changed: -- Navbars are built with flexbox! Instead of floats, you'll need [flexbox](https://v4-alpha.getbootstrap.com/utilities/flexbox/) and [margin utilities](https://v4-alpha.getbootstrap.com/utilities/spacing/). +- Navbars are built with flexbox! Instead of floats, you'll need [flexbox](https://v4-alpha.getbootstrap.com/utilities/flex/) and [margin utilities](https://v4-alpha.getbootstrap.com/utilities/spacing/). - Navbar navs no longer require the `.nav` base class. While it provided a starting point, these shared styles often got in the way of navbar behaviors. Now it's just `.navbar-nav` and utilities for alignment. - The `.navbar-toggleable` classes are now applied to the `.navbar` instead of the `.collapse` within. This allows us to provide better responsive behavior with just one class change. - The responsive navbar toggle, `.navbar-toggler`, has also been updated. The icon is once again a child element, `.navbar-toggler-icon`, for improved customization. It also includes easy modifiers for absolutely aligning it to the top right or top left. diff --git a/src/content/posts/2017/bootstrap-4-beta.md b/src/content/posts/2017/bootstrap-4-beta.md index 0507de7ce..f0b3e7d53 100644 --- a/src/content/posts/2017/bootstrap-4-beta.md +++ b/src/content/posts/2017/bootstrap-4-beta.md @@ -23,7 +23,7 @@ For those who haven't been using the v4 alpha releases, here are some highlights - **Brand new customization options.** Instead of relegating style embellishments like gradients, transitions, shadows, grid classes, and more to a separate stylesheet like v3, we've moved all those options into Sass variables. Want default transitions on everything or to disable rounded corners? Simply update a variable and recompile. - **Dropped IE8 and IE9 support, dropped older browser versions, and moved to rem units for component sizing** to take advantage of newer CSS support. Aside from our grid, pixels have been swapped for rems and ems where appropriate to make responsive typography and component sizing even easier. Need support for IE8/IE9, Safari 8-, iOS 8-, etc? Keep using Bootstrap 3. - **Rewrote all our JavaScript plugins.** Every plugin has been rewritten in ES6 to take advantage of the newest JavaScript enhancements with new teardown methods, option type checking, new methods, and more. -- **Improved auto-placement of tooltips, popovers, and dropdowns** thanks to the help of a library called [Popper.js](https://popper.js.org). +- **Improved auto-placement of tooltips, popovers, and dropdowns** thanks to the help of a library called [Popper.js](https://popper.js.org/docs/v2/). - **Redesigned and improved documentation.** We redesigned it, rewrote it all in Markdown, and added a few handy plugins to streamline examples and code snippets to make working with our docs way easier. We also added an amazing new search form! - **New build tools** completely rewritten in npm scripts instead of Grunt, immensely simplifying the process of developing and contributing to Bootstrap. - **And so much more!** Custom form controls, a redesigned carousel, an overhauled navbar, HTML5 form validation styles, hundreds of responsive utility classes, new components, and more have also been included. @@ -36,7 +36,7 @@ Bootstrap 4 has been sporting a slightly updated look throughout our alpha relea [![Bootstrap 4 beta docs](/assets/img/2017/bootstrap-4-beta.png)]({{< param "main" >}}/) -In addition to a new color palette and new systems fonts, we have a brand new layout for our documentation. New with this beta is an amazing search form powered by Algolia's [DocSearch](https://community.algolia.com/docsearch/), an improved page layout with stickied navbar and sidebar, and a new table of contents. +In addition to a new color palette and new systems fonts, we have a brand new layout for our documentation. New with this beta is an amazing search form powered by Algolia's [DocSearch](https://docsearch.algolia.com/), an improved page layout with stickied navbar and sidebar, and a new table of contents. --- diff --git a/src/content/posts/2018/bootstrap-3-4-0.md b/src/content/posts/2018/bootstrap-3-4-0.md index c5dce6778..2944b7cef 100644 --- a/src/content/posts/2018/bootstrap-3-4-0.md +++ b/src/content/posts/2018/bootstrap-3-4-0.md @@ -20,7 +20,7 @@ While we haven't publicly worked on v3.x in years, we've heard from all of you d - **New:** Added a `.row-no-gutters` class. - **New:** Added docs searching via Algolia. -- **Fixed:** Resolved an XSS issue in Alert, Carousel, Collapse, Dropdown, Modal, and Tab components. See for details. +- **Fixed:** Resolved an XSS issue in Alert, Carousel, Collapse, Dropdown, Modal, and Tab components. See for details. - **Fixed:** Added padding to `.navbar-fixed-*` on modal open - **Fixed:** Removed the double border on `` elements. - Removed Gist creation in web-based Customizer since anonymous gists were disabled long ago by GitHub. diff --git a/src/content/posts/2020/bootstrap-5-beta-1.md b/src/content/posts/2020/bootstrap-5-beta-1.md index 730e640cd..95fa898fb 100644 --- a/src/content/posts/2020/bootstrap-5-beta-1.md +++ b/src/content/posts/2020/bootstrap-5-beta-1.md @@ -48,7 +48,7 @@ For example, in a LTR context, instead of `.ml-3` for `margin-left`, use `.ms-3` ![Popper.js](/assets/img/2020/12/popper-header.png) -We've upgraded [Popper.js](https://popper.js.org) from v1.x to v2.x, bringing with it some small breaking changes to our tooltips and popovers. These two changes are why we haven't been able to update to v2.x sooner. +We've upgraded [Popper.js](https://popper.js.org/docs/v2/) from v1.x to v2.x, bringing with it some small breaking changes to our tooltips and popovers. These two changes are why we haven't been able to update to v2.x sooner. - Removed `offset` option from our Tooltip/Popover and Dropdown plugins; this can still be achieved using the `popperConfig` parameter. - The `fallbackPlacement` option has become `fallbackPlacements`.