mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
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
11 lines
209 B
JavaScript
11 lines
209 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get mobiledocConverter() {
|
|
return require('./mobiledoc-converter');
|
|
},
|
|
|
|
get markdownConverter() {
|
|
return require('./markdown-converter');
|
|
}
|
|
};
|