mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 22:11:09 +03:00
Updated plaintext to be a partial doc
refs: https://github.com/TryGhost/Ghost/issues/11407 - there's no need for us to process the whole document as it's only used for excerpts - emails need the whole document, but they're managed seprately now - this is more efficient and means we could potentially do it on the fly 🤔
This commit is contained in:
parent
9d4d6688d8
commit
8f90ca949d
@ -43,6 +43,12 @@ const loadConverters = () => {
|
||||
const {compile} = require('html-to-text');
|
||||
|
||||
const excerptSettings = mergeSettings({
|
||||
limits: {
|
||||
// Only process the first part of the document
|
||||
maxChildNodes: 15,
|
||||
// don't insert dots at the end
|
||||
ellipsis: ''
|
||||
},
|
||||
selectors: [
|
||||
{selector: 'a', options: {ignoreHref: true}},
|
||||
{selector: 'figcaption', format: 'skip'}
|
||||
|
@ -37,7 +37,7 @@ describe('Html to Plaintext', function () {
|
||||
assert.equal(email, 'A snippet from a post template [https://mysite.com]\n\nSee? Not that scary! But still completely optional.');
|
||||
});
|
||||
|
||||
it('longer example', function () {
|
||||
it('longer example is cut off in excerpts only', function () {
|
||||
const input = '<p>As discussed in the <a href="https://demo.ghost.io/welcome/">introduction</a> post, one of the best things about Ghost is just how much you can customize to turn your site into something unique. Everything about your layout and design can be changed, so you\'re not stuck with yet another clone of a social network profile.</p><p>How far you want to go with customization is completely up to you, there\'s no right or wrong approach! The majority of people use one of Ghost\'s built-in themes to get started, and then progress to something more bespoke later on as their site grows. </p><p>The best way to get started is with Ghost\'s branding settings, where you can set up colors, images and logos to fit with your brand.</p><figure class="kg-card kg-image-card kg-width-wide kg-card-hascaption"><img src="https://static.ghost.org/v4.0.0/images/brandsettings.png" class="kg-image" alt loading="lazy" width="3456" height="2338"><figcaption>Ghost Admin → Settings → Branding</figcaption></figure><p>Any Ghost theme that\'s up to date and compatible with Ghost 4.0 and higher will reflect your branding settings in the preview window, so you can see what your site will look like as you experiment with different options.</p><p>When selecting an accent color, try to choose something which will contrast well with white text. Many themes will use your accent color as the background for buttons, headers and navigational elements. Vibrant colors with a darker hue tend to work best, as a general rule.</p><h2 id="installing-ghost-themes">Installing Ghost themes</h2><p>By default, new sites are created with Ghost\'s friendly publication theme, called Casper. Everything in Casper is optimized to work for the most common types of blog, newsletter and publication that people create with Ghost — so it\'s a perfect place to start.</p><p>However, there are hundreds of different themes available to install, so you can pick out a look and feel that suits you best.</p><figure class="kg-card kg-image-card kg-width-wide kg-card-hascaption"><img src="https://static.ghost.org/v4.0.0/images/themesettings.png" class="kg-image" alt loading="lazy" width="3208" height="1618"><figcaption>Ghost Admin → Settings → Theme</figcaption></figure><p>Inside Ghost\'s theme settings you\'ll find 4 more official themes that can be directly installed and activated. Each theme is suited to slightly different use-cases.</p><ul><li><strong>Casper</strong> <em>(default)</em> — Made for all sorts of blogs and newsletters</li><li><strong>Edition</strong> — A beautiful minimal template for newsletter authors</li><li><strong>Alto</strong> — A slick news/magazine style design for creators</li><li><strong>London</strong> — A light photography theme with a bold grid</li><li><strong>Ease</strong> — A library theme for organizing large content archives</li></ul><p>And if none of those feel quite right, head on over to the <a href="https://ghost.org/themes/">Ghost Marketplace</a>, where you\'ll find a huge variety of both free and premium themes.</p><h2 id="building-something-custom">Building something custom</h2><p>Finally, if you want something completely bespoke for your site, you can always build a custom theme from scratch and upload it to your site.</p><p>Ghost\'s theming template files are very easy to work with, and can be picked up in the space of a few hours by anyone who has just a little bit of knowledge of HTML and CSS. Templates from other platforms can also be ported to Ghost with relatively little effort.</p><p>If you want to take a quick look at the theme syntax to see what it\'s like, you can <a href="https://github.com/tryghost/casper/">browse through the files of the default Casper theme</a>. We\'ve added tons of inline code comments to make it easy to learn, and the structure is very readable.</p><figure class="kg-card kg-code-card"><pre><code class="language-handlebars">{{#post}}\n<article class="article {{post_class}}">\n\n <h1>{{title}}</h1>\n \n {{#if feature_image}}\n \t<img src="{{feature_image}}" alt="Feature image" />\n {{/if}}\n \n {{content}}\n\n</article>\n{{/post}}</code></pre><figcaption>A snippet from a post template</figcaption></figure><p>See? Not that scary! But still completely optional. </p><p>If you\'re interested in creating your own Ghost theme, check out our extensive <a href="https://ghost.org/docs/themes/">theme documentation</a> for a full guide to all the different template variables and helpers which are available.</p>';
|
||||
|
||||
const {excerpt, email} = getEmailandExcert(input);
|
||||
@ -46,11 +46,15 @@ describe('Html to Plaintext', function () {
|
||||
assert.doesNotMatch(excerpt, /https:\/\/demo\.ghost\.io\/welcome/);
|
||||
// No figcaption
|
||||
assert.doesNotMatch(excerpt, /Ghost Admin → Settings → Theme/);
|
||||
// Is cut off early
|
||||
assert.doesNotMatch(excerpt, /If you want to take a quick look at the theme syntax/);
|
||||
|
||||
// contains link
|
||||
assert.match(email, /https:\/\/demo\.ghost\.io\/welcome/);
|
||||
// contains figcaption
|
||||
assert.match(email, /Ghost Admin → Settings → Theme/);
|
||||
// contains all content
|
||||
assert.match(email, /If you want to take a quick look at the theme syntax/);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user