mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 13:31:39 +03:00
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get mobiledocConverter() {
|
|
return require('./mobiledoc-converter');
|
|
},
|
|
|
|
get markdownConverter() {
|
|
return require('./markdown-converter');
|
|
}
|
|
};
|