Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
fenceparser
Advanced tools
A well-tested parser for parsing metadata out of fenced code blocks in Markdown
A well-tested parser for parsing metadata out of fenced code blocks in Markdown.
Assuming you have this code fence in your Markdown,
```ts twoslash {1-3, 5} title="Hello, World"
Using remark will yield two information about that code block, lang
and meta
like this.
{
"lang": "ts",
"meta": "twoslash {1-3, 5} title=\"Hello, World\""
}
Use fenceparser
to parse the meta
string out to a useful object.
import parse from 'fenceparser'
console.log(parse(meta))
// {
// twoslash: true,
// highlight: { '1-3': true, '5': true },
// title: 'Hello, World'
// }
The parser won't intentionally handle parsing the language part since it is usually handled by the Markdown parsers.
But if you want to allow loose syntax grammars such as ts{1-3, 5}
as well as ts {1-3, 5}
which is used by gatsby-remark-vscode as an example, remark won't parse the language correctly.
{
"lang": "ts{1-3,", // because remark uses space to split
"meta": "5}"
}
In these cases, you can use the the library's lex
function to get a properly tokenized array. You may then take out the first element as lang
. For example,
import { lex, parse } from 'fenceparser'
// Notice this ^ parse is not the same the default export function
const full = [node.lang, node.meta].join(' ') // Join them back
const tokens = lex(full)
const lang = tokens.shift() // ts
const meta = parse(tokens) // { highlight: {'1-3': true, '5': true} }
The syntax grammar is loosely based on techniques used by various syntax-highlighters. Rules are such that
attribute
, data-attribute
, etc.true
attr=--theme-color
:
keyword, {1-3, 5, ids: {7}}
{1-3} {7}
are merged and assigned to the highlight
objectLexer
and Parser
are based on the examples from the book Crafting Interpreters.1.1.1
FAQs
A well-tested parser for parsing metadata out of fenced code blocks in Markdown
The npm package fenceparser receives a total of 2,502 weekly downloads. As such, fenceparser popularity was classified as popular.
We found that fenceparser 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.