mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
no issue
- fixes rendering bug introduced in 0833b28557
- updates test generators/fixtures to use new card names
7 lines
283 B
JavaScript
7 lines
283 B
JavaScript
'use strict';
|
|
|
|
// this card is just an alias of the `markdown` card which is necessary because
|
|
// our markdown-only editor was using the `card-markdown` card name
|
|
const markdownCard = require('./markdown');
|
|
|
|
module.exports = Object.assign({}, markdownCard, {name: 'card-markdown'});
|