Skip to content

Commit

Permalink
Fix transposition typo in blog tag and WebC tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsCurious committed Jun 9, 2024
1 parent 21ae6d3 commit 5dcef2b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/_layouts/blog.njk
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ layout: base
if
item.data.tags.length > 1
%}
<div slot="tag" webc:nkoeep>
<div slot="tag" webc:nokeep>
{% for tag in item.data.tags %}
{% if tag != "posts" %}
<span class="button post-tag">{{ tag }}</span>
Expand Down
2 changes: 1 addition & 1 deletion src/_layouts/home.njk
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ layout: base
if
item.data.tags.length > 1
%}
<div slot="tag" webc:nkoeep>
<div slot="tag" webc:nokeep>
{% for tag in item.data.tags %}
{% if tag != "posts" %}
<span class="button post-tag">{{ tag }}</span>
Expand Down
2 changes: 1 addition & 1 deletion src/posts/2022/2022-09-01-post-with-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: 'Post with some code'
description: 'Syntax Highlighting is achieved by a pack of Eleventy plugins. No browser/client JavaScript, highlight transformations are all done at build-time.'
date: 2022-09-01
tags: ['sytnax highlighting', 'feature']
tags: ['syntax highlighting', 'feature']
---

This theme uses 11ty's [Syntax Highlighting Plugin](https://www.11ty.dev/docs/plugins/syntaxhighlight/), a pack of Eleventy plugins for PrismJS syntax highlighting. No browser/client JavaScript, highlight transformations are all done at build-time.
Expand Down
2 changes: 1 addition & 1 deletion src/posts/2022/2022-10-12-post-with-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The class names are passed in the outer container, the `<picture>` or `<figure>`

{% image "./src/assets/images/gallery/asturias-3.jpg", "A traditional Asturian village with it's raised granaries, surrounded by lush green hills and mountains", null, "lazy", "class-that-does-nothing", "(min-width:30em) 50vw, 100vw", [200, 400] %}

## Markdown sytnax
## Markdown syntax

Thanks to the [markdown-it-eleventy-img](https://github.com/solution-loisir/markdown-it-eleventy-img) package markdown also has it own image syntax. `src` is already prepended here, see `config/plugins/markdown.js`.

Expand Down

0 comments on commit 5dcef2b

Please sign in to comment.