File tree Expand file tree Collapse file tree 6 files changed +13
-56
lines changed Expand file tree Collapse file tree 6 files changed +13
-56
lines changed Original file line number Diff line number Diff line change 21
21
* SOFTWARE.
22
22
*/
23
23
24
+ import githubAlerts from 'remark-github-alerts' ;
24
25
import { defineConfig } from 'astro/config' ;
25
26
import tailwind from '@astrojs/tailwind' ;
26
27
import sitemap from '@astrojs/sitemap' ;
@@ -34,7 +35,7 @@ export default defineConfig({
34
35
output : 'server' ,
35
36
site : 'https://floofy.dev' ,
36
37
markdown : {
37
- remarkPlugins : [ twemoji ] ,
38
+ remarkPlugins : [ twemoji , githubAlerts ] ,
38
39
syntaxHighlight : 'shiki' ,
39
40
shikiConfig : {
40
41
theme : 'poimandres' ,
Original file line number Diff line number Diff line change 30
30
"astro-icon" : " 1.1.0" ,
31
31
"autoprefixer" : " 10.4.20" ,
32
32
"pino" : " 9.3.2" ,
33
+ "remark-github-alerts" : " 0.0.4" ,
33
34
"remark-twemoji" : " 0.1.1" ,
34
35
"tailwindcss" : " 3.4.9" ,
35
36
"twemoji" : " 14.0.2"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ const projects: Props['data'][] = [
22
22
}
23
23
];
24
24
25
+ // if any mutuals I know want to be added, you can DM me on Discord (@auguwu)
26
+ // or submit a PR if you wish :3
25
27
const friends = [
26
28
{
27
29
friend: ' Spotlight' ,
@@ -32,8 +34,13 @@ const friends = [
32
34
friend: ' Alula' ,
33
35
img: ' https://alula.me/webring/alula.png' ,
34
36
url: ' https://alula.me'
37
+ },
38
+ {
39
+ friend: ' Ovyerus' ,
40
+ img: ' https://ovyerus.com/webring/ovyerus.png' ,
41
+ url: ' https://ovyerus.com'
35
42
}
36
- ];
43
+ ] as const ;
37
44
---
38
45
39
46
<html lang =" en" >
@@ -70,7 +77,7 @@ const friends = [
70
77
{
71
78
friends .map (({ friend , img , url }) => (
72
79
<a href = { url } target = " _blank" >
73
- <img alt = { ` ${friend }'s 88x31' ` } class = " rounded-sm" src = { img } />
80
+ <img alt = { ` ${friend }'s 88x31 ` } class = " rounded-sm" src = { img } />
74
81
</a >
75
82
))
76
83
}
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ article.markdown {
89
89
@apply prose-a:text-rose-200 prose-a:underline hover:prose-a:text-fuchsia-400;
90
90
91
91
/* <blockquote> elements */
92
- @apply prose-blockquote:border-l-4 prose-blockquote:border-gray-600;
92
+ @apply prose-blockquote:border-l-4 prose-blockquote:border-gray-600 prose-blockquote:not-italic ;
93
93
94
94
/* <li> elements */
95
95
@apply prose-li:leading-7 prose-li:text-zinc-200;
You can’t perform that action at this time.
0 commit comments