
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
@plone/blocks-conversion-tool
Advanced tools
[](https://www.npmjs.com/package/@plone/blocks-conversion-tool) [](https://g
This package implements a server with a simple API to convert HTML (as used in Plone Classic) to Blocks (as used on Volto).
git clone https://github.com/plone/blocks-conversion-tool.git
cd blocks-conversion-tool
yarn install
yarn start
docker run -it -p 5000:5000 plone/blocks-conversion-tool:latest
Slate is going to be the default text block for Plone 6, to convert HTML to an array of blocks call the service passing the HTML as shown below:
curl -i -X POST http://localhost:5000/html -H "Accept: application/json" -H "Content-Type: application/json" --data-raw '{"html": "<p>Hello world!</p>"}'
Draft-JS is the legacy default text block used in Volto.
curl -i -X POST http://localhost:5000/html -H "Accept: application/json" -H "Content-Type: application/json" --data-raw '{"html": "<p>Hello world!</p>", "converter": "draftjs"}'
FAQs
[](https://www.npmjs.com/package/@plone/blocks-conversion-tool) [](https://g
The npm package @plone/blocks-conversion-tool receives a total of 0 weekly downloads. As such, @plone/blocks-conversion-tool popularity was classified as not popular.
We found that @plone/blocks-conversion-tool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.