
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@paperist/remark-caption
Advanced tools
wooorm/remark plugin for caption
Support Pandoc's table / code caption at wooorm/remark.
npm i remark @paperist/remark-caption
const unified = require('unified');
const parser = require('remark-parse');
const tableCaption = require('@paperist/remark-caption');
const markdown = `
| Right | Left | Default | Center |
|------:|:-----|---------|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
Table: Demonstration of pipe table syntax.
~~~rb
puts "Hello World!";
~~~
Code: Hello World written by Ruby.
`;
const processor = unified()
.use(parser)
.use(tableCaption);
const ast = processor.parse(markdown);
processor.run(ast).then((ast) => {
console.dir(ast, { depth: null });
});
CaptionBlock
CaptionBlock
extends Parent
.
interface CaptionBlock extends Parent {
type: 'captionBlock';
}
For example, the following markdown:
Table: Caption {#tbl:label}
Yields:
{
"type": "captionBlock",
"children": [
{
"type": "text",
"value": "Caption {#tbl:lable}"
}
]
}
PRs accepted.
FAQs
wooorm/remark plugin for caption
We found that @paperist/remark-caption demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.