chore: improve truncation

This commit is contained in:
Cory Dransfeldt 2024-08-14 20:09:01 -07:00
parent 47a71087c4
commit e8ae3c1448
No known key found for this signature in database
6 changed files with 11 additions and 11 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "22.3.5",
"version": "22.3.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "22.3.5",
"version": "22.3.6",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "22.3.5",
"version": "22.3.6",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {

View file

@ -32,15 +32,15 @@
{%- if schema == 'blog' -%}
{%- assign pageDescription = post.description | markdown | strip_html -%}
{%- elsif artist.description -%}
{%- assign pageDescription = artist.description | truncate: 300 -%}
{%- assign pageDescription = artist.description | truncatewords: 50 -%}
{%- elsif book.description -%}
{%- assign pageDescription = book.review | markdown | strip_html | default: book.description | truncate: 300 -%}
{%- assign pageDescription = book.review | markdown | strip_html | default: book.description | truncatewords: 50 -%}
{%- elsif movie.description -%}
{%- assign pageDescription = movie.review | markdown | strip_html | default: movie.description | truncate: 300 -%}
{%- assign pageDescription = movie.review | markdown | strip_html | default: movie.description | truncatewords: 50 -%}
{%- elsif show.description -%}
{%- assign pageDescription = show.review | markdown | strip_html | default: show.description | truncate: 300 -%}
{%- assign pageDescription = show.review | markdown | strip_html | default: show.description | truncatewords: 50 -%}
{%- elsif genre.description -%}
{%- assign pageDescription = genre.description | markdown | strip_html | truncate: 300 -%}
{%- assign pageDescription = genre.description | markdown | strip_html | truncatewords: 50 -%}
{%- elsif page.description -%}
{%- assign pageDescription = page.description -%}
{%- elsif description -%}

View file

@ -19,7 +19,7 @@
</a>
<span class="p-author h-card hidden">{{ globals.site_name }}</span>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
{{ post.description | markdown | truncate: 300 }}
{{ post.description | normalize_whitespace | markdown | truncatewords: 50 }}
</article>
{%- endfor -%}
{%- if postType != 'featured' -%}

View file

@ -5,7 +5,7 @@ permalink: /blogroll.html
description: These are awesome blogs that I enjoy and you may enjoy too.
---
<h2>{{ title }}</h2>
<p>You can <a href="/blogroll.opml">Download OPML</a>
<p>You can <a href="/blogroll.opml" data-umami-event="Blogroll OPML download">Download OPML</a>
download an OPML file</a> containing all of these feeds and import them into your RSS reader.</p>
<table>
<tr>

View file

@ -47,7 +47,7 @@ schema: books
{%- assign percentage = book.progress | append: '%' -%}
{% render "partials/media/progress-bar.liquid", percentage:percentage %}
{% endif %}
{% if book.description %}<div class="description">{{ book.description | markdown | truncate: 300 }}</div>{% endif %}
{% if book.description %}<div class="description">{{ book.description | normalize_whitespace | markdown | truncatewords: 50 }}</div>{% endif %}
</div>
</article>
{% endfor %}