
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@biblo/addon-simple-markup
Advanced tools
Biblo addon for parsing simple markup.
"Lorem **bold** ipsum" ➡️ Lorem bold ipsum
"Lorem _italic_ ipsum" ➡️ Lorem italic ipsum
"Lorem ~~strike through~~ ipsum" ➡️ Lorem strike through ipsum
# npm
npm install @biblo/addon-simple-markup --save
# Yarn
yarn add @biblo/addon-simple-markup
Import the addon and add it to BibloProvider:
import React from "react";
import {
bibloImporter,
BibloProvider,
} from "@biblo/react-native";
// Import the addon
import BibloAddonSimpleMarkup from "@biblo/addon-simple-markup";
const components = bibloImporter(
require.context("/", true, /\.biblo\.[tj]sx?$/),
);
export default function App() {
return (
<BibloProvider
// Apply the addon
addons={[BibloAddonSimpleMarkup]}
components={components}
>
...
</BibloProvider>
);
}
The default markup is set with
** for bold_ for italic~~ for This can be changed by passing an object to BibloAddonSimpleMarkup:
<BibloProvider
addons={[
BibloAddonSimpleMarkup({
bold: "*",
italic: "__",
strikeThrough: "--",
}),
]}
components={components}
>
...
</BibloProvider>
FAQs
Allow using simple markup in texts in Biblo files
The npm package @biblo/addon-simple-markup receives a total of 1 weekly downloads. As such, @biblo/addon-simple-markup popularity was classified as not popular.
We found that @biblo/addon-simple-markup 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.