![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gatsby-transformer-archieml-markdown
Advanced tools
Parses ArchieML files into gatsby, with an option to parse markdown strings within the ArchieML.
npm install gatsby-transformer-archieml-markdown
You also need to have gatsby-source-filesystem
installed and configured so it points to your files.
In your gatsby-config.js
:
module.exports = {
plugins: [
`gatsby-transformer-archieml-markdown`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data/`,
},
},
],
}
Because of the way that gatsby requires a common schema for each type, this conflicts with ArchieML's freeform structure. To get around this, gatsby-transformer-archieml-markdown serializes the ArchieML object into a string. This behavior can be disabled if needed.
You can query your archieML files like:
{
allDataArchieMl {
edges {
node {
object
}
}
}
}
Which would return:
{
allLettersJson: {
edges: [
{
node: {
object: "{\"object\":\"test\"}",
},
},
{
node: {
object: "{\"object\":\"test\"}",
},
},
]
}
}
typeName
[string|function][optional]
The default naming convention documented above can be changed with either a static string value (e.g. to be able to query all archieml files with a simple query):
module.exports = {
plugins: [
{
resolve: `gatsby-transformer-archieml-markdown`,
options: {
typeName: `ArchieML`, // a fixed string
},
},
],
}
{
allArchieMl {
edges {
node {
object
}
}
}
}
or a function that receives the following arguments:
node
: the graphql node that is being processed, e.g. a File node with ArchieML contentobject
: the parsed ArchieML objectmodule.exports = {
plugins: [
{
resolve: `gatsby-transformer-archieml-markdown`,
options: {
typeName: ({ node, object }) => object.level,
},
},
],
}
FAQs
A gatsby transformer for ArchieML and Markdown
The npm package gatsby-transformer-archieml-markdown receives a total of 0 weekly downloads. As such, gatsby-transformer-archieml-markdown popularity was classified as not popular.
We found that gatsby-transformer-archieml-markdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.