Git Product home page Git Product logo

gatsby-remark-afm's Introduction

gatsby-remark-afm

Enhances github flavoured markdown with Adobe extensions

Important

Use this before gatsby-remark-external-links

Installation

npm add @adobe/gatsby-remark-afm

Usage

This plugin can be used with gatsby-transformer-remark or gatsby-plugin-mdx.

To use it with gatsby-transformer-remark, add it to your gatsby-config.js like this:

plugins: [
  {
    resolve: `gatsby-transformer-remark`,
    options: {
      plugins: [
        {
          resolve: `@adobe/gatsby-remark-afm`,
          options: {
            directory: `${__dirname}/path-to-markdown-files`,
          },
        },
        'gatsby-remark-external-links',
      ]
    }
  },

To use it with gatsby-plugin-mdx, add it to your gatsby-config.js like this:

{
  resolve: `gatsby-plugin-mdx`,
  options: {
    extensions: [`.mdx`, `.md`],
    gatsbyRemarkPlugins: [
      {
        resolve: `@adobe/gatsby-remark-afm`,
        options: {
          directory: `${__dirname}/path-to-markdown-files`,
        },
      },
    ],
  },
},

Options

directory - The absolute path to the directory where you keep your markdown files for your site.

This option is required to resolve the plugin's include feature {% include_relative path/to/markdown-file.md %}, which allows writers to include the contents from one markdown file into another.

Adding this directory path ensures that the plugin can find your site's markdown files to include. All markdown files in sub-directories of the directory path will also be processed and made available as needed.

License

Apache-2.0

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

gatsby-remark-afm's People

Contributors

bdenham avatar macdonst avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.