Skip to content

Commit 54f4b09

Browse files
committed
Add Iosevka
1 parent 3ea27ea commit 54f4b09

File tree

2 files changed

+14
-21
lines changed

2 files changed

+14
-21
lines changed

.astro/types.d.ts

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,13 @@ declare module 'astro:content' {
206206
collection: "post";
207207
data: InferEntrySchema<"post">
208208
} & { render(): Render[".md"] };
209-
"conv-probit.md": {
210-
id: "conv-probit.md";
209+
"conv-probit.mdx": {
210+
id: "conv-probit.mdx";
211211
slug: "conv-probit";
212212
body: string;
213213
collection: "post";
214214
data: InferEntrySchema<"post">
215-
} & { render(): Render[".md"] };
215+
} & { render(): Render[".mdx"] };
216216
"convnet-conv-layer.md": {
217217
id: "convnet-conv-layer.md";
218218
slug: "convnet-conv-layer";
@@ -304,13 +304,13 @@ declare module 'astro:content' {
304304
collection: "post";
305305
data: InferEntrySchema<"post">
306306
} & { render(): Render[".md"] };
307-
"hessian-invariance.md": {
308-
id: "hessian-invariance.md";
307+
"hessian-invariance.mdx": {
308+
id: "hessian-invariance.mdx";
309309
slug: "hessian-invariance";
310310
body: string;
311311
collection: "post";
312312
data: InferEntrySchema<"post">
313-
} & { render(): Render[".md"] };
313+
} & { render(): Render[".mdx"] };
314314
"infogan.md": {
315315
id: "infogan.md";
316316
slug: "infogan";
@@ -444,13 +444,13 @@ declare module 'astro:content' {
444444
collection: "post";
445445
data: InferEntrySchema<"post">
446446
} & { render(): Render[".md"] };
447-
"plotting.md": {
448-
id: "plotting.md";
447+
"plotting.mdx": {
448+
id: "plotting.mdx";
449449
slug: "plotting";
450450
body: string;
451451
collection: "post";
452452
data: InferEntrySchema<"post">
453-
} & { render(): Render[".md"] };
453+
} & { render(): Render[".mdx"] };
454454
"rejection-sampling.md": {
455455
id: "rejection-sampling.md";
456456
slug: "rejection-sampling";
@@ -486,13 +486,6 @@ declare module 'astro:content' {
486486
collection: "post";
487487
data: InferEntrySchema<"post">
488488
} & { render(): Render[".md"] };
489-
"test.mdx": {
490-
id: "test.mdx";
491-
slug: "test";
492-
body: string;
493-
collection: "post";
494-
data: InferEntrySchema<"post">
495-
} & { render(): Render[".mdx"] };
496489
"theano-pde.md": {
497490
id: "theano-pde.md";
498491
slug: "theano-pde";
@@ -521,13 +514,13 @@ declare module 'astro:content' {
521514
collection: "post";
522515
data: InferEntrySchema<"post">
523516
} & { render(): Render[".md"] };
524-
"volume-form.md": {
525-
id: "volume-form.md";
517+
"volume-form.mdx": {
518+
id: "volume-form.mdx";
526519
slug: "volume-form";
527520
body: string;
528521
collection: "post";
529522
data: InferEntrySchema<"post">
530-
} & { render(): Render[".md"] };
523+
} & { render(): Render[".mdx"] };
531524
"wagtail-dev-env.md": {
532525
id: "wagtail-dev-env.md";
533526
slug: "wagtail-dev-env";

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const interests = [
2525
'Riemannian Geometry'
2626
]
2727
const languages = ['Rust', 'Gleam', 'Python']
28-
const editors = ['Neovim']
28+
const editors = ['Neovim', 'Kitty', 'Iosevka']
2929
3030
const MAX_POSTS = 10
3131
const allPosts = await getAllPosts()
@@ -175,7 +175,7 @@ const sortedSelectedPubs = selectedPubs.filter((pub: Publication) => pub.marked)
175175

176176
<Section title='Skills'>
177177
<SkillLayout title='Languages' skills={languages} />
178-
<SkillLayout title='Editor' skills={editors} />
178+
<SkillLayout title='Editor Stack' skills={editors} />
179179
</Section>
180180

181181
{

0 commit comments

Comments
 (0)