From 483b732a8245116ebe1eca442e1b642a71311987 Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Wed, 30 Oct 2024 00:45:58 +0100 Subject: [PATCH] Remove blog for now --- blog/2023-10-09.md | 7 ------- blog/2024-05-07.md | 22 ---------------------- blog/authors.yml | 5 ----- docusaurus.config.js | 18 ++++-------------- 4 files changed, 4 insertions(+), 48 deletions(-) delete mode 100644 blog/2023-10-09.md delete mode 100644 blog/2024-05-07.md delete mode 100644 blog/authors.yml diff --git a/blog/2023-10-09.md b/blog/2023-10-09.md deleted file mode 100644 index 6d32bb8..0000000 --- a/blog/2023-10-09.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Trying this again -authors: [patrik] -tags: [mew] ---- - -I know it's never a good idea to write things from scratch, but I still intend to do it with Mew. Over the past few months, I've learned various aspects of how a compiler works and contemplated what I want Mew to be. Hopefully, something good will come out of it. Time will tell. \ No newline at end of file diff --git a/blog/2024-05-07.md b/blog/2024-05-07.md deleted file mode 100644 index 754fd45..0000000 --- a/blog/2024-05-07.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: A long overdue update -authors: [patrik] -tags: [mew] ---- - -Life got in the way, but I've picked up this project again. - -I've reduced the project scope to get something -that works reliably out the door feasible; this means that Mew will be based on -the .NET runtime, and as a first step, not generate CIL myself but -transpile Mew to (non-optimal) C# code. This will hopefully make it easier -to get something out and experiment with the language. - -I'm focusing on documenting every aspect of the language that I would want -to see in the first version. Once that is done, I will open the repository -and open-source the project. Hopefully other people can learn from all my mistakes. - -:::note -Mew is a learning exercise in compilers and an experiment to see if I -can create something usable, mostly from a scripting perspective. -::: \ No newline at end of file diff --git a/blog/authors.yml b/blog/authors.yml deleted file mode 100644 index 89a0380..0000000 --- a/blog/authors.yml +++ /dev/null @@ -1,5 +0,0 @@ -patrik: - name: Patrik Svensson - title: Maintainer of Mew - url: https://github.com/patriksvensson - image_url: https://github.com/patriksvensson.png diff --git a/docusaurus.config.js b/docusaurus.config.js index cb82cae..4f96f9f 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -14,7 +14,6 @@ const config = { favicon: 'img/favicon.ico', // GitHub pages deployment config. - // If you aren't using GitHub pages, you don't need these. organizationName: 'mew-lang', // Usually your GitHub org/user name. projectName: 'mew', // Usually your repo name. trailingSlash: false, @@ -42,17 +41,8 @@ const config = { routeBasePath: '/', sidebarPath: require.resolve('./sidebars.js'), sidebarCollapsed: false, - // Please change this to your repo. - // Remove this to remove the "edit this page" links. editUrl: - 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/', - }, - blog: { - showReadingTime: true, - // Please change this to your repo. - // Remove this to remove the "edit this page" links. - editUrl: - 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/', + 'https://github.com/mew-lang/docs/tree/main/', }, theme: { customCss: require.resolve('./src/css/custom.css'), @@ -79,9 +69,9 @@ const config = { position: 'left', label: 'Documentation', }, - { - to: '/blog', label: 'Blog', position: 'left' - }, + /* { + to: '/blog', label: 'Blog', position: 'left' + }, */ { href: 'https://github.com/mew-lang', className: "header-github-link",