Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siawyoung/gatsby-remark-hypher
A gatsby-remark plugin to add hyphenation to Markdown.
https://github.com/siawyoung/gatsby-remark-hypher
gatsby gatsby-plugin gatsby-remark gatsby-remark-hypher gatsbyjs hyphenation
Last synced: about 2 months ago
JSON representation
A gatsby-remark plugin to add hyphenation to Markdown.
- Host: GitHub
- URL: https://github.com/siawyoung/gatsby-remark-hypher
- Owner: siawyoung
- License: mit
- Created: 2020-06-15T03:29:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-15T03:46:02.000Z (over 4 years ago)
- Last Synced: 2024-11-15T04:27:04.804Z (2 months ago)
- Topics: gatsby, gatsby-plugin, gatsby-remark, gatsby-remark-hypher, gatsbyjs, hyphenation
- Language: JavaScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gatsby-remark-hypher
A thin wrapper around [`remark-hypher`](https://github.com/siawyoung/remark-hypher), for use with Gatsby. Please see `remark-hypher` for information and documentation on usage.
## Getting started
``` javascript
// in gatsby-config.js
plugins: [
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: "gatsby-remark-hypher",
options: {
leftmin: 3,
rightmin: 2,
minLength: 6,
},
},
],
},
},
]
```The options object is the same one as documented in `remark-hypher`.