Skip to content

Commit

Permalink
use · instead of - and ·
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaleidosium committed May 12, 2024
1 parent 6361f16 commit 3fa142e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/notebook/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{#each data.posts as post}
<li class="post">
<a href="{`notebook/${post.slug}`}" class="title">{post.title}</a>
-
&middot;
<span class="date">{formatDate(post.date)}</span>
</li>
{/each}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/notebook/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<span class="date --accent-font">
<i>Published on {formatDate(data.meta.date)}</i>
</span>
<span>·</span>
<span>&middot;</span>
<span class="tags --accent-font --accent-color">
{#each data.meta.categories as category}
<span class="surface-4">&num;{category}&nbsp</span>
Expand Down

0 comments on commit 3fa142e

Please sign in to comment.