@tryghost/mg-html-mobiledoc
v0.9.40
Published
A little wrapper tool for migrating all HTML fields of posts to mobiledoc
Maintainers
Keywords
Readme
Migrate HTML -> Mobiledoc
A little wrapper tool for migrating all HTML fields of posts to mobiledoc
Install
npm install @tryghost/mg-html-mobiledoc --save
or
yarn add @tryghost/mg-html-mobiledoc
Usage
var mgHtmlMobiledoc = require('tryghost/mg-html-mobiledoc');
var convertedData = mgHtmlMobiledoc.convert(myData);Data structure passed in can be either
var myData = {
posts: [
{
html: '<h2>Good stuff here</h2>'
}
]
}or
var 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.
