Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 487 Bytes

File metadata and controls

29 lines (23 loc) · 487 Bytes

gatsby-remark-hard-breaks

A Gatsby Remark plugin to add break support without needing spaces for Gatsby 4

Installation

yarn add gatsby-remark-hard-breaks

Usage

Add the plugin to your Gatsby config:

// gatsby-config.js
plugins: [
    {
        resolve: "gatsby-transformer-remark",
        options: {
            plugins: [
                {
                    resolve: 'gatsby-remark-hard-breaks'
                },
            ]
        }
    },
],