Fix broken link

This commit is contained in:
Niklas Birk 2023-10-31 20:41:33 +01:00
parent bf4bfcdf71
commit 7ed683389b
34 changed files with 5523 additions and 11996 deletions

View File

@ -41,7 +41,7 @@ und eignen sich daher gut dafür sich die Dinge vorzustellen.
Auch deshalb beschränkt man sich häufig auf diese, wenn man einer Person Mathematik nahe bringen möchte. Auch deshalb beschränkt man sich häufig auf diese, wenn man einer Person Mathematik nahe bringen möchte.
Auch spielt das Rechnen in unserem Alltag an der Supermarktkasse oder beim Zählen eine große Rolle. Auch spielt das Rechnen in unserem Alltag an der Supermarktkasse oder beim Zählen eine große Rolle.
Mathematik zählt wie die [Informatik](/informatik/informatik.md) zu den *Struktur*- bzw. *Formalwissenschaften*. Mathematik zählt wie die [Informatik](/docs/informatik/) zu den *Struktur*- bzw. *Formalwissenschaften*.
Sie nimmt damit eine Sonderrolle unter den Wissenschaften ein und wird manchmal auch als *__die__ exakte* Wissenschaft betrachtet. Sie nimmt damit eine Sonderrolle unter den Wissenschaften ein und wird manchmal auch als *__die__ exakte* Wissenschaft betrachtet.
Denn anders, als bei anderen Wissenschaften beruhen die Erkenntnisse auf einem logischen Beweis. Denn anders, als bei anderen Wissenschaften beruhen die Erkenntnisse auf einem logischen Beweis.
Ein wahrer logischer Beweis ist prinzipbedingt endgültig und allgemeingültig wahr. Ein wahrer logischer Beweis ist prinzipbedingt endgültig und allgemeingültig wahr.

View File

@ -1,19 +1,19 @@
// @ts-check // @ts-check
// Note: type annotations allow type checking and IDEs autocompletion // Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require('prism-react-renderer/themes/github'); import remarkMath from 'remark-math';
const darkCodeTheme = require('prism-react-renderer/themes/dracula'); import rehypeKatex from 'rehype-katex';
const math = require('remark-math'); const lightCodeTheme = require('prism-react-renderer').themes.github;
const katex = require('rehype-katex'); const darkCodeTheme = require('prism-react-renderer').themes.dracula;
/** @type {import('@docusaurus/types').Config} */ /** @type {import('@docusaurus/types').Config} */
const config = { export default {
title: 'Mathematik, Informatik und Programmierung', title: 'Mathematik, Informatik und Programmierung',
tagline: 'Mathematik und Informatik sind cool', tagline: 'Mathematik und Informatik sind cool',
url: 'https://www.niklas-birk.de', url: 'https://www.niklas-birk.de',
baseUrl: '/', baseUrl: '/',
onBrokenLinks: 'throw', onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn', onBrokenMarkdownLinks: 'warn',
favicon: 'img/niklas-birk-icon.ico', favicon: 'img/niklas-birk-icon.ico',
@ -38,8 +38,8 @@ const config = {
// docs: false, // docs: false,
docs: { docs: {
sidebarPath: require.resolve('./sidebars.js'), sidebarPath: require.resolve('./sidebars.js'),
remarkPlugins: [math], remarkPlugins: [remarkMath],
rehypePlugins: [katex], rehypePlugins: [rehypeKatex],
// // Please change this to your repo. // // Please change this to your repo.
// // Remove this to remove the "edit this page" links. // // Remove this to remove the "edit this page" links.
// // editUrl: // // editUrl:
@ -171,5 +171,3 @@ const config = {
}, },
], ],
}; };
module.exports = config;

17170
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "niklas-birk-blog", "name": "niklas-birk-blog",
"version": "0.1.0", "version": "0.1.1",
"private": true, "private": true,
"scripts": { "scripts": {
"docusaurus": "docusaurus", "docusaurus": "docusaurus",
@ -14,19 +14,20 @@
"write-heading-ids": "docusaurus write-heading-ids" "write-heading-ids": "docusaurus write-heading-ids"
}, },
"dependencies": { "dependencies": {
"@docusaurus/core": "^2.4.1", "@docusaurus/core": "^3.0.0",
"@docusaurus/preset-classic": "^2.4.1", "@docusaurus/preset-classic": "^3.0.0",
"@mdx-js/react": "^1.6.22", "@mdx-js/react": "^3.0.0",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"hast-util-is-element": "^1.1.0", "hast-util-is-element": "^3.0.0",
"prism-react-renderer": "^1.3.5", "prism-react-renderer": "^2.1.0",
"react": "^17.0.2", "react": "^18.2.0",
"react-dom": "^17.0.2", "react-dom": "^18.2.0",
"rehype-katex": "^5.0.0", "rehype-katex": "^7.0.0",
"remark-math": "^3.0.1" "remark-math": "^6.0.0"
}, },
"devDependencies": { "devDependencies": {
"@docusaurus/module-type-aliases": "^2.1.0" "@docusaurus/module-type-aliases": "^3.0.0",
"@docusaurus/types": "3.0.0"
}, },
"browserslist": { "browserslist": {
"production": [ "production": [
@ -41,6 +42,6 @@
] ]
}, },
"engines": { "engines": {
"node": ">=16.14" "node": ">=18.0"
} }
} }