remove old notes and fix katex css

This commit is contained in:
2026-01-18 13:26:30 +00:00
parent 5e355859b2
commit 542af53c38
4 changed files with 1 additions and 47 deletions

View File

@@ -17,6 +17,6 @@ const props = defineProps({
></div>
</template>
<style scoped>
<style>
@import "katex/dist/katex.min.css";
</style>

View File

@@ -29,16 +29,6 @@ const router = createRouter({
name: "notes",
component: () => import("../views/Notes.vue"),
},
{
path: "/notes/islp",
name: "islp",
component: () => import("../views/notes/Islp.vue"),
},
{
path: "/notes/vue",
name: "vue",
component: () => import("../views/notes/Vue.vue"),
},
{
path: "/shrines",
name: "shrine links",

View File

@@ -1,18 +0,0 @@
<template>
<main class="center-content flex-col">
<div class="a4page-portrait bdr-1 flex-col relative scroll-y">
<div class="bdr-primary">
<h1>Welcome to my ILSP notes</h1>
<p>
I'm taking up the course so that I can apply some machine
learning techniques to data involved in my personal
projects.
</p>
</div>
<h2>Chapter 2</h2>
<h3>Solutions</h3>
<p></p>
</div>
</main>
</template>

View File

@@ -1,18 +0,0 @@
<script setup>
import Markdown from "@/components/quick/Markdown.vue";
const source = `
The gaussian is $\\frac{1}{\\sqrt{2\\pi}}e^{-\\frac{x^2}{2}}$.
`;
</script>
<template>
<main class="center-content flex-col">
<div class="a4page-portrait bdr-1 flex-col relative scroll-y">
<h1>These are my notes about Vue.js</h1>
<h1>Pinia</h1>
<Markdown :source="source" />
<h1>Composition API</h1>
</div>
</main>
</template>