0.2.0 • Published 7 years ago

@comsoc/gatsby-mdast-copy-linked-files v0.2.0

Weekly downloads
2
License
MIT
Repository
-
Last release
7 years ago

gatsby-remark-copy-linked-files

Copies files linked to from markdown to your public folder.

Install

npm install --save gatsby-remark-copy-linked-files

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: `gatsby-transformer-remark`,
    options: {
      plugins: [
        `gatsby-remark-copy-linked-files`,
      ]
    }
  }
]

Then in your Markdown files, simply link to the file you desire to reference.

E.g.

---
title: My awesome blog post
---

Hey everyone, I just made a sweet PDF with lots of interesting stuff in
it.

[Download it now](my-awesome-pdf.pdf)

my-awesome-pdf.pdf should be in the same directory as the markdown file. When you build your site, the file will be copied to the public folder and the markdown HTML will be modified to point to it.