@tryghost/mg-html-lexical
v0.0.33
Published
A little wrapper tool for migrating all HTML fields of posts to Lexical
Maintainers
Keywords
Readme
Migrate HTML -> Lexical
A little wrapper tool for migrating all HTML fields of posts to Lexical
Install
npm install @tryghost/mg-html-lexical --save
or
yarn add @tryghost/mg-html-lexical
Usage
var mgHtmlLexical = require('tryghost/mg-html-lexical');
var convertedData = mgHtmlLexical.convert(myData);Data structure passed in can be either
let myData = {
posts: [
{
html: '<h2>Good stuff here</h2>'
}
]
}or
let myData = {
data: {
posts: [
{
html: '<h2>Good stuff here</h2>'
}
]
}
}Develop
This is a mono repository, managed with lerna.
Follow the instructions for the top-level repo.
git clonethis repo &cdinto it as usual- Run
yarnto install top-level dependencies.
Run
yarn dev
Test
yarn lintrun just eslintyarn testrun lint and tests
Copyright & License
Copyright (c) 2013-2026 Ghost Foundation - Released under the MIT license.
