Ghost/core/server/data
Kevin Ansfield f57268daae
Koenig - Finalise Koenig HTML output and migrate existing content (#9741)
refs https://github.com/TryGhost/Ghost/issues/9742

We've identified some changes we need to make to the HTML output of the [new Koenig editor](
https://forum.ghost.org/t/koenig-editor-beta-release/1284/102) for future proofing and consistency across cards.

- the `<div class="kg-post">` wrapper around post content has been removed
- for image cards the `.kg-image-wide` and `.kg-image-full` classes have been changed to `.kg-width-wide` and `.kg-width-full` and applied to the `<figure>` element rather than the `<img>` element

Before:
```html
<div class="kg-post">
    <figure class="kg-image-card">
        <img class="kg-image kg-image-wide" src="...">
        <figcaption>example wide image</figcaption>
    </figure>
</div>
```

After:
```html
<figure class="kg-image-card kg-width-wide">
    <img class="kg-image" src="...">
    <figcaption>example wide image</figcaption>
</figure>
```
2018-07-23 12:23:02 +01:00
..
db Updated docs links 2018-07-20 23:49:16 +02:00
export Backup endpoint improvements (#9365) 2018-01-11 16:03:21 +01:00
importer 🐛 Fixed unable to publish a post after slack hook import 2018-06-11 11:08:08 +02:00
meta 🐛 Fixed Disqus comments on post preview pages 2018-07-11 00:20:55 +02:00
migrations Koenig - Finalise Koenig HTML output and migrate existing content (#9741) 2018-07-23 12:23:02 +01:00
schema Updated docs links 2018-07-20 23:49:16 +02:00
validation Updated docs links 2018-07-20 23:49:16 +02:00
xml/sitemap Dynamic Routing Beta (#9596) 2018-06-05 19:02:20 +02:00
timezones.json Adds UTC as select option to timezones select list 2016-06-10 15:19:16 +02:00