gatsby-remark-abbr

2.0.0 • Public • Published

🎩 gatsby-remark-abbr

Add abbreviation syntax support to Gatsby.

With this plugin, you'll be able to write in your Markdown pages:

The HTML specification
is maintained by the W3C.
 
*[HTML]: Hyper Text Markup Language
*[W3C]:  World Wide Web Consortium

And it'll be converted to:

<p>
  The <abbr title="Hyper Text Markup Language">HTML</abbr> specification
  is maintained by the <abbr title="World Wide Web Consortium">W3C</abbr>.
</p>

Installation

  1. Add the package to your project:
  • With yarn:
    yarn add gatsby-remark-abbr
  • With npm:
    npm install gatsby-remark-abbr
  1. Add those few lines into your gatsby-config.js:
    module.exports = {
      plugins: [
        {
          resolve: 'gatsby-transformer-remark',
          options: {
+           plugins: [
+             'gatsby-remark-abbr',
+           ],
          },
        },
    };
  1. Delete .cache/ and reboot gatsby
  2. You can now enjoy markdown abbreviation syntax 🎉

Todo

Currently, some code is duplicated between remark-abbr and this plugin. I haven't figured it out yet how to do avoid this. Any help will be greatly apreciated 😅

License

It's a wrapper around remark-abbr plugin, which is under MIT license.

Package Sidebar

Install

npm i gatsby-remark-abbr

Weekly Downloads

190

Version

2.0.0

License

MIT

Unpacked Size

14.9 kB

Total Files

14

Last publish

Collaborators

  • calyhre