Compare commits
5 Commits
f3fe88ff58
...
570f235009
Author | SHA1 | Date |
---|---|---|
Helen Chong | 570f235009 | |
Helen Chong | bef0ef34b6 | |
Helen Chong | ca2d915f44 | |
Helen Chong | 2b02329cd2 | |
Helen Chong | c179700a08 |
|
@ -4,7 +4,7 @@ import pluginEleventyNavigation from "@11ty/eleventy-navigation";
|
||||||
import pluginSyntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
|
import pluginSyntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
|
||||||
import pluginEmbedEverything from "eleventy-plugin-embed-everything";
|
import pluginEmbedEverything from "eleventy-plugin-embed-everything";
|
||||||
import pluginMetagen from "eleventy-plugin-metagen";
|
import pluginMetagen from "eleventy-plugin-metagen";
|
||||||
import pluginEmojiReadTime from "@11tyrocks/eleventy-plugin-emoji-readtime";
|
import pluginWordcount from "eleventy-plugin-wordcount-extended";
|
||||||
import pluginTOC from "@uncenter/eleventy-plugin-toc";
|
import pluginTOC from "@uncenter/eleventy-plugin-toc";
|
||||||
|
|
||||||
// Custom Configurations
|
// Custom Configurations
|
||||||
|
@ -21,7 +21,7 @@ export default function(eleventyConfig) {
|
||||||
eleventyConfig.addPlugin(pluginSyntaxHighlight, { preAttributes: { tabindex: 0 } });
|
eleventyConfig.addPlugin(pluginSyntaxHighlight, { preAttributes: { tabindex: 0 } });
|
||||||
eleventyConfig.addPlugin(pluginEmbedEverything, { add: ['soundcloud'] });
|
eleventyConfig.addPlugin(pluginEmbedEverything, { add: ['soundcloud'] });
|
||||||
eleventyConfig.addPlugin(pluginMetagen);
|
eleventyConfig.addPlugin(pluginMetagen);
|
||||||
eleventyConfig.addPlugin(pluginEmojiReadTime);
|
eleventyConfig.addPlugin(pluginWordcount);
|
||||||
eleventyConfig.addPlugin(pluginTOC, {
|
eleventyConfig.addPlugin(pluginTOC, {
|
||||||
tags: ['h2', 'h3', 'h4', 'h5', 'h6'],
|
tags: ['h2', 'h3', 'h4', 'h5', 'h6'],
|
||||||
wrapper: function (toc) {
|
wrapper: function (toc) {
|
||||||
|
|
|
@ -14,11 +14,11 @@
|
||||||
"@11ty/eleventy-navigation": "^0.3.5",
|
"@11ty/eleventy-navigation": "^0.3.5",
|
||||||
"@11ty/eleventy-plugin-rss": "^2.0.2",
|
"@11ty/eleventy-plugin-rss": "^2.0.2",
|
||||||
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
|
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
|
||||||
"@11tyrocks/eleventy-plugin-emoji-readtime": "^1.0.1",
|
|
||||||
"@uncenter/eleventy-plugin-toc": "^1.0.3",
|
"@uncenter/eleventy-plugin-toc": "^1.0.3",
|
||||||
"@zachleat/details-utils": "^2.0.2",
|
"@zachleat/details-utils": "^2.0.2",
|
||||||
"eleventy-plugin-embed-everything": "^1.18.2",
|
"eleventy-plugin-embed-everything": "^1.18.2",
|
||||||
"eleventy-plugin-metagen": "^1.8.3",
|
"eleventy-plugin-metagen": "^1.8.3",
|
||||||
|
"eleventy-plugin-wordcount-extended": "^0.2.1",
|
||||||
"install": "^0.13.0",
|
"install": "^0.13.0",
|
||||||
"markdown-it-anchor": "^9.0.1",
|
"markdown-it-anchor": "^9.0.1",
|
||||||
"markdown-it-attribution": "^0.1.4",
|
"markdown-it-attribution": "^0.1.4",
|
||||||
|
|
|
@ -24,4 +24,9 @@ export default function(eleventyConfig) {
|
||||||
eleventyConfig.addFilter("itemLimit", function(array, itemLimit) {
|
eleventyConfig.addFilter("itemLimit", function(array, itemLimit) {
|
||||||
return array.slice(0, itemLimit);
|
return array.slice(0, itemLimit);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Thousands separator
|
||||||
|
eleventyConfig.addFilter("thousands", function(num) {
|
||||||
|
return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
||||||
|
});
|
||||||
}
|
}
|
|
@ -18,9 +18,12 @@
|
||||||
{% if isArticle %}
|
{% if isArticle %}
|
||||||
<div class="article__info">
|
<div class="article__info">
|
||||||
<p class="article__info--desc">{{ desc }}</p>
|
<p class="article__info--desc">{{ desc }}</p>
|
||||||
<p>Posted on {{ date | formatDate }} by {{ sitemeta.siteAuthor.name }}
|
<p>
|
||||||
|
{{ content | wordcount | thousands }} words.
|
||||||
|
Posted on <time datetime="{{ date }}">{{ date | formatDate }}</time> by {{ sitemeta.siteAuthor.name }}
|
||||||
|
</p>
|
||||||
{% if updated %}
|
{% if updated %}
|
||||||
• Last updated on {{ updated | formatDate }}</p>
|
<p>Last updated on <time datetime="{{ updated }}">{{ updated | formatDate }}</time></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if categories %}
|
{% if categories %}
|
||||||
<p>Categories:
|
<p>Categories:
|
||||||
|
@ -29,7 +32,6 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p>{{ content | emojiReadTime }}</p>
|
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if desc %}
|
{% if desc %}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p>{{ content.date | formatDate }}</p>
|
<time datetime="{{ content.date }}">{{ content.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -33,7 +33,7 @@ isContentDivided: true
|
||||||
{{ group.templateContent | safe }}
|
{{ group.templateContent | safe }}
|
||||||
|
|
||||||
{% if group.data.updated %}
|
{% if group.data.updated %}
|
||||||
<p class="update-info">(This {{ group.data.title }} list was last updated on {{ group.data.updated | formatDate }})</p>
|
<p class="update-info">(This {{ group.data.title }} list was last updated on <time datetime="{{ group.data.updated }}">{{ group.data.updated | formatDate }}</time>)</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="#linktabs" class="tab__btn tab__back">Back to tabs</a>
|
<a href="#linktabs" class="tab__btn tab__back">Back to tabs</a>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -4,4 +4,4 @@ layout: main/content
|
||||||
|
|
||||||
{{ content | safe }}
|
{{ content | safe }}
|
||||||
|
|
||||||
<p class="update-info">(This {{ keyword }} was last updated on {{ updated | formatDate }})</p>
|
<p class="update-info">(This {{ keyword }} was last updated on <time datetime="{{ updated }}">{{ updated | formatDate }}</time>)</p>
|
|
@ -20,7 +20,7 @@ eleventyNavigation:
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
<p>{{ post.date | formatDate }}</p>
|
<time datetime="{{ post.date }}">{{ post.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -16,7 +16,7 @@ eleventyNavigation:
|
||||||
|
|
||||||
<h2>Latest Changelogs</h2>
|
<h2>Latest Changelogs</h2>
|
||||||
{% for log in changelogs %}
|
{% for log in changelogs %}
|
||||||
<h3 class="date-style">{{ log.date | formatDate }}</h3>
|
<h3 class="date-style"><time datetime="{{ log.date }}">{{ log.date | formatDate }}</time></h3>
|
||||||
{{ log.templateContent | safe }}
|
{{ log.templateContent | safe }}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
date: 2024-09-06T00:11:29+0800
|
||||||
|
---
|
||||||
|
|
||||||
|
* Replace the estimated reading time of articles and blog posts with word count, by using the [eleventy-plugin-wordcount-extended](https://www.npmjs.com/package/eleventy-plugin-wordcount-extended) plugin.
|
|
@ -23,7 +23,7 @@ eleventyNavigation:
|
||||||
{%- endmacro -%}
|
{%- endmacro -%}
|
||||||
|
|
||||||
<section class="content__section">
|
<section class="content__section">
|
||||||
<p>(This page was last updated on {{ updated | formatDate }})</p>
|
<p>(This page was last updated on <time datetime="{{ updated }}">{{ updated | formatDate }}</time>)</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{% include "main/virtualpets.njk" %}
|
{% include "main/virtualpets.njk" %}
|
||||||
|
|
|
@ -12,7 +12,7 @@ Articles I have written.
|
||||||
{%- for article in collections["my articles"] -%}
|
{%- for article in collections["my articles"] -%}
|
||||||
<li>
|
<li>
|
||||||
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
||||||
<p>{{ article.date | formatDate }}</p>
|
<time datetime="{{ article.date }}">{{ article.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -7,7 +7,7 @@ eleventyComputed:
|
||||||
desc: What {{ sitemeta.siteAuthor.name }} is doing now.
|
desc: What {{ sitemeta.siteAuthor.name }} is doing now.
|
||||||
---
|
---
|
||||||
|
|
||||||
*This page was last updated on {{ updated | formatDate }}.*
|
*This page was last updated on <time datetime="{{ updated }}">{{ updated | formatDate }}</time>.*
|
||||||
|
|
||||||
This is my [/now page](https://nownownow.com/about). You can find more pages like this at [nownownow.com](https://nownownow.com/).
|
This is my [/now page](https://nownownow.com/about). You can find more pages like this at [nownownow.com](https://nownownow.com/).
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ eleventyNavigation:
|
||||||
{%- for article in collections["cassette beasts articles"] -%}
|
{%- for article in collections["cassette beasts articles"] -%}
|
||||||
<li>
|
<li>
|
||||||
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
||||||
<p>{{ article.date | formatDate }}</p>
|
<time datetime="{{ article.date }}">{{ article.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -17,7 +17,7 @@ eleventyNavigation:
|
||||||
{%- for article in collections["kotor both articles"] -%}
|
{%- for article in collections["kotor both articles"] -%}
|
||||||
<li>
|
<li>
|
||||||
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
||||||
<p>{{ article.date | formatDate }}</p>
|
<time datetime="{{ article.date }}">{{ article.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -27,7 +27,7 @@ eleventyNavigation:
|
||||||
{%- for article in collections["kotor 1 articles"] -%}
|
{%- for article in collections["kotor 1 articles"] -%}
|
||||||
<li>
|
<li>
|
||||||
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
||||||
<p>{{ article.date | formatDate }}</p>
|
<time datetime="{{ article.date }}">{{ article.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -37,7 +37,7 @@ eleventyNavigation:
|
||||||
{%- for article in collections["kotor 2 articles"] -%}
|
{%- for article in collections["kotor 2 articles"] -%}
|
||||||
<li>
|
<li>
|
||||||
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
||||||
<p>{{ article.date | formatDate }}</p>
|
<time datetime="{{ article.date }}">{{ article.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -17,7 +17,7 @@ eleventyNavigation:
|
||||||
{%- for article in collections["kotor guides"] -%}
|
{%- for article in collections["kotor guides"] -%}
|
||||||
<li>
|
<li>
|
||||||
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
|
||||||
<p>{{ article.date | formatDate }}</p>
|
<time datetime="{{ article.date }}">{{ article.date | formatDate }}</time>
|
||||||
</li>
|
</li>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Colophon
|
title: Colophon
|
||||||
keyword: colophon page
|
keyword: colophon page
|
||||||
updated: 2024-08-20T09:55:39+0800
|
updated: 2024-09-05T23:53:14+0800
|
||||||
toc: true
|
toc: true
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
order: 14
|
order: 14
|
||||||
|
@ -31,9 +31,9 @@ Previously, this website was hosted on [Neocities](https://neocities.org/) until
|
||||||
* [@zachleat/details-utils](https://www.npmjs.com/package/@zachleat/details-utils)
|
* [@zachleat/details-utils](https://www.npmjs.com/package/@zachleat/details-utils)
|
||||||
|
|
||||||
### Eleventy Community Plugins
|
### Eleventy Community Plugins
|
||||||
* [@11tyrocks/eleventy-plugin-emoji-readtime](https://www.npmjs.com/package/@11tyrocks/eleventy-plugin-emoji-readtime)
|
|
||||||
* [eleventy-plugin-embed-everything](https://www.npmjs.com/package/eleventy-plugin-embed-everything)
|
|
||||||
* [eleventy-plugin-metagen](https://www.npmjs.com/package/eleventy-plugin-metagen)
|
* [eleventy-plugin-metagen](https://www.npmjs.com/package/eleventy-plugin-metagen)
|
||||||
|
* [eleventy-plugin-wordcount-extended](https://www.npmjs.com/package/eleventy-plugin-wordcount-extended)
|
||||||
|
* [eleventy-plugin-embed-everything](https://www.npmjs.com/package/eleventy-plugin-embed-everything)
|
||||||
* [@uncenter/eleventy-plugin-toc](https://www.npmjs.com/package/@uncenter/eleventy-plugin-toc)
|
* [@uncenter/eleventy-plugin-toc](https://www.npmjs.com/package/@uncenter/eleventy-plugin-toc)
|
||||||
|
|
||||||
### markdown-it plugins
|
### markdown-it plugins
|
||||||
|
|
Loading…
Reference in New Issue