A Gatsby Remark plugin to add break support without needing spaces for Gatsby 4
yarn add gatsby-remark-hard-breaks
Add the plugin to your Gatsby config:
// gatsby-config.js
plugins: [
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: 'gatsby-remark-hard-breaks'
},
]
}
},
],