mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-02 07:43:11 +03:00
f61aa662c1
refs #7429 - ☢️ 👷🏻♀️ This PR removes the dependency on Ghost-Editor and replaces it with the Mobiledoc DOM renderer. It includes new DOM based default cards and atoms.
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
var cards = require('./cards'),
|
|
atoms = require('./atoms');
|
|
module.exports = {
|
|
cards: cards,
|
|
atoms: atoms,
|
|
activate: function () {
|
|
// needed by ghost
|
|
}
|
|
};
|