0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/core/server/lib/mobiledoc/cards/index.js
Kevin Ansfield f54db75ed1 Koenig - Code card server-side rendering
refs https://github.com/TryGhost/Ghost/issues/9623
- add support for `code` card that renders into `<pre><code>...</code></pre>`
- render language class if one is provided
2018-05-15 16:27:34 +01:00

10 lines
186 B
JavaScript

'use strict';
module.exports = [
require('./card-markdown'),
require('./code'),
require('./hr'),
require('./html'),
require('./image'),
require('./markdown')
];