Ghost/core/server
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
..
adapters ES6 migration: server/adapters/scheduling/post-scheduling (#9698) 2018-06-26 00:46:31 +02:00
api Fixed typo in server/api/utils (#9714) 2018-07-10 12:20:43 +02:00
apps 🐛Fixed slugs containing the word amp result in 404s when serving the amp version (#9722) 2018-07-10 12:55:08 +02:00
config Replaced routeKeywords in config with hard coded keywords (#9561) 2018-04-17 10:36:05 +01:00
data Koenig - Finalise Koenig HTML output and migrate existing content (#9741) 2018-07-23 12:23:02 +01:00
helpers Updated docs links 2018-07-20 23:49:16 +02:00
lib Koenig - Finalise Koenig HTML output and migrate existing content (#9741) 2018-07-23 12:23:02 +01:00
models Updated docs links 2018-07-20 23:49:16 +02:00
public 🔥 Drop Node v4 Support 2018-05-01 14:06:18 +02:00
services Updated docs links 2018-07-20 23:49:16 +02:00
translations Updated docs links 2018-07-20 23:49:16 +02:00
views Fixed error trying to render 404 for missing asset 2017-12-22 20:08:59 +00:00
web Updated docs links 2018-07-20 23:49:16 +02:00
analytics-events.js Cleared out old unused events 2017-12-13 09:08:25 +00:00
filters.js Moved pipeline/sequence to lib/promise 2017-12-13 22:20:02 +01:00
ghost-server.js Consistent event names 2018-04-15 23:52:42 +02:00
index.js Dynamic Routing Beta (#9596) 2018-06-05 19:02:20 +02:00
overrides.js Added /oembed API endpoint 2018-06-12 16:18:01 +01:00
update-check.js 🔥 Drop Node v4 Support 2018-05-01 14:06:18 +02:00