0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/apps/default-cards/converters/index.js
Katharina Irrgang 9de13ae3ad Moved mobiledoc/markdown converters to apps/default-cards (#9338)
refs #9178

- they definitely don't belong to server/utils
- i think the best place is putting them into the card apps
- the the post model needs to ask the app for it's converters
- move tests as well
2017-12-14 11:09:54 +00:00

11 lines
209 B
JavaScript

'use strict';
module.exports = {
get mobiledocConverter() {
return require('./mobiledoc-converter');
},
get markdownConverter() {
return require('./markdown-converter');
}
};