Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anakornk/gatsby-remark-hard-breaks
A Gatsby Remark plugin to add break support without needing spaces for Gatsby 4
https://github.com/anakornk/gatsby-remark-hard-breaks
breaks gatsby gatsby-remark-plugin linebreaks remark
Last synced: about 2 months ago
JSON representation
A Gatsby Remark plugin to add break support without needing spaces for Gatsby 4
- Host: GitHub
- URL: https://github.com/anakornk/gatsby-remark-hard-breaks
- Owner: anakornk
- Created: 2022-02-28T10:56:29.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-28T12:36:16.000Z (almost 3 years ago)
- Last Synced: 2024-08-09T14:04:45.819Z (5 months ago)
- Topics: breaks, gatsby, gatsby-remark-plugin, linebreaks, remark
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gatsby-remark-hard-breaks
A Gatsby Remark plugin to add break support without needing spaces for Gatsby 4
## Installation
```bash
yarn add gatsby-remark-hard-breaks
```## Usage
Add the plugin to your Gatsby config:
```js
// gatsby-config.js
plugins: [
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: 'gatsby-remark-hard-breaks'
},
]
}
},
],
```