chore: improve truncation
This commit is contained in:
parent
47a71087c4
commit
e8ae3c1448
6 changed files with 11 additions and 11 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.3.5",
|
"version": "22.3.6",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.3.5",
|
"version": "22.3.6",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.3.5",
|
"version": "22.3.6",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -32,15 +32,15 @@
|
||||||
{%- if schema == 'blog' -%}
|
{%- if schema == 'blog' -%}
|
||||||
{%- assign pageDescription = post.description | markdown | strip_html -%}
|
{%- assign pageDescription = post.description | markdown | strip_html -%}
|
||||||
{%- elsif artist.description -%}
|
{%- elsif artist.description -%}
|
||||||
{%- assign pageDescription = artist.description | truncate: 300 -%}
|
{%- assign pageDescription = artist.description | truncatewords: 50 -%}
|
||||||
{%- elsif book.description -%}
|
{%- 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 -%}
|
{%- 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 -%}
|
{%- 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 -%}
|
{%- elsif genre.description -%}
|
||||||
{%- assign pageDescription = genre.description | markdown | strip_html | truncate: 300 -%}
|
{%- assign pageDescription = genre.description | markdown | strip_html | truncatewords: 50 -%}
|
||||||
{%- elsif page.description -%}
|
{%- elsif page.description -%}
|
||||||
{%- assign pageDescription = page.description -%}
|
{%- assign pageDescription = page.description -%}
|
||||||
{%- elsif description -%}
|
{%- elsif description -%}
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
</a>
|
</a>
|
||||||
<span class="p-author h-card hidden">{{ globals.site_name }}</span>
|
<span class="p-author h-card hidden">{{ globals.site_name }}</span>
|
||||||
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
|
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
|
||||||
{{ post.description | markdown | truncate: 300 }}
|
{{ post.description | normalize_whitespace | markdown | truncatewords: 50 }}
|
||||||
</article>
|
</article>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
{%- if postType != 'featured' -%}
|
{%- if postType != 'featured' -%}
|
||||||
|
|
|
@ -5,7 +5,7 @@ permalink: /blogroll.html
|
||||||
description: These are awesome blogs that I enjoy and you may enjoy too.
|
description: These are awesome blogs that I enjoy and you may enjoy too.
|
||||||
---
|
---
|
||||||
<h2>{{ title }}</h2>
|
<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>
|
download an OPML file</a> containing all of these feeds and import them into your RSS reader.</p>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -47,7 +47,7 @@ schema: books
|
||||||
{%- assign percentage = book.progress | append: '%' -%}
|
{%- assign percentage = book.progress | append: '%' -%}
|
||||||
{% render "partials/media/progress-bar.liquid", percentage:percentage %}
|
{% render "partials/media/progress-bar.liquid", percentage:percentage %}
|
||||||
{% endif %}
|
{% 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>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
{% endfor %}
|
{% endfor %}
|
Reference in a new issue