0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/core/server/lib/mobiledoc/renderers/index.js
Kevin Ansfield 0741114d11 Moved htmlToMobiledocConverter() out of renderers
no issue

- prep for extraction of various Koenig repos
- html->mobiledoc doesn't really fit into the "renderer" naming as it's more of a converter than a renderer and doesn't follow the same pattern
2020-03-19 12:18:54 +00:00

9 lines
208 B
JavaScript

module.exports = {
get mobiledocHtmlRenderer() {
return require('./mobiledoc-html-renderer');
},
get markdownHtmlRenderer() {
return require('./markdown-html-renderer');
}
};