Gathering detailed insights and metrics for @adobe/gatsby-remark-afm
Gathering detailed insights and metrics for @adobe/gatsby-remark-afm
Gathering detailed insights and metrics for @adobe/gatsby-remark-afm
Gathering detailed insights and metrics for @adobe/gatsby-remark-afm
cross-env
Run scripts that set and use environment variables across platforms
gatsby-transformer-remark
Gatsby transformer plugin for Markdown using the Remark library and ecosystem
gatsby-source-filesystem
Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.
gatsby-remark-copy-linked-files
Find files which are linked to from markdown and copy them to the public directory
npm install @adobe/gatsby-remark-afm
70.9
Supply Chain
90.1
Quality
83
Maintenance
50
Vulnerability
100
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
3 Stars
108 Commits
5 Forks
11 Watching
4 Branches
237 Contributors
Updated on 19 Jan 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
-30%
14
Compared to previous week
Last month
-44.2%
72
Compared to previous month
Last year
-68.4%
830
Compared to previous year
Enhances github flavoured markdown with Adobe extensions
Use this before gatsby-remark-external-links
1npm add @adobe/gatsby-remark-afm
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:
1plugins: [ 2 { 3 resolve: `gatsby-transformer-remark`, 4 options: { 5 plugins: [ 6 { 7 resolve: `@adobe/gatsby-remark-afm`, 8 options: { 9 directory: `${__dirname}/path-to-markdown-files`, 10 }, 11 }, 12 'gatsby-remark-external-links', 13 ] 14 } 15 },
To use it with gatsby-plugin-mdx
, add it to your gatsby-config.js
like this:
1{ 2 resolve: `gatsby-plugin-mdx`, 3 options: { 4 extensions: [`.mdx`, `.md`], 5 gatsbyRemarkPlugins: [ 6 { 7 resolve: `@adobe/gatsby-remark-afm`, 8 options: { 9 directory: `${__dirname}/path-to-markdown-files`, 10 }, 11 }, 12 ], 13 }, 14},
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.
Contributions are welcomed! Read the Contributing Guide for more information.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 1/29 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
18 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More