From a6f8b4b93bc939819a36c6e441bb1d09fde2461a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Bordalo?= Date: Fri, 1 Dec 2023 17:09:09 +0000 Subject: [PATCH] Remove all usages of , it transpiles to other pages Sort markdown front matter in alphabetical order Add 'description' front matter to blog index and blog post Set blog title and description on docusaurus.config --- .../index.md | 25 +++---------------- website/docs/intro.md | 4 +-- website/docusaurus.config.js | 17 +++++++------ 3 files changed, 16 insertions(+), 30 deletions(-) diff --git a/website/blog/2023-11-10-liquidity-requirements/index.md b/website/blog/2023-11-10-liquidity-requirements/index.md index 70abcb7..1e9869d 100644 --- a/website/blog/2023-11-10-liquidity-requirements/index.md +++ b/website/blog/2023-11-10-liquidity-requirements/index.md @@ -1,29 +1,12 @@ --- -slug: liquidity-requirements -title: Understanding Ark Liquidity Requirements authors: bordalix -tags: [liquidity, ark, bitcoin] +description: Dive into the depths of Ark with our comprehensive guide on Liquidity Requirements. Explore how Ark liquidity intersect with money velocity image: /img/ark-agora.png +slug: liquidity-requirements +tags: [liquidity, ark, bitcoin] +title: Understanding Ark Liquidity Requirements --- - - - - - - - - - - - - - - - - - - ![Bitcoin agora](/img/ark-agora.png) This post discusses the liquidity requirements and calculates the funding needs of Ark Service Provider (ASP), as all transactions within Ark must be funded by the ASP. diff --git a/website/docs/intro.md b/website/docs/intro.md index da6cef1..197cb55 100644 --- a/website/docs/intro.md +++ b/website/docs/intro.md @@ -1,7 +1,8 @@ --- -title: 'Introduction' +description: Detailed information about the protocol, guidance on providing liquidity, and instructions on how to efficiently spend your coins off-chain in a secure manner sidebar_position: 1 slug: / +title: Introduction to Ark --- **Welcome to Ark's developer hub.** Here, you'll find detailed information about the protocol, guidance on providing liquidity, and instructions on how to efficiently spend your coins off-chain in a secure manner. @@ -30,7 +31,6 @@ Should the digital bank cease to exist, **users can still retrieve their digital Start by exploring the [Nomenclature](/docs/learn/nomenclature.md) to familiarize yourself with key concepts and terminology. Then, learn how to [Board the Ark](/docs/learn/boarding.md), [Send Payments](/docs/learn/payments.md), and eventually [Leave the Ark](/docs/learn/leaving.md) to withdraw your funds back to the Bitcoin blockchain in case of server unresponsiveness. - ### 👩‍💻 Integrate Ark You can [integrate Ark](/docs/developers/get-started.md) into your wallet or application to enable your users to send and receive Bitcoin payments off-chain. diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index aa4351a..8e20230 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -1,7 +1,6 @@ // @ts-check // Note: type annotations allow type checking and IDEs autocompletion - const lightCodeTheme = require('prism-react-renderer/themes/synthwave84') const darkCodeTheme = require('prism-react-renderer/themes/dracula') @@ -27,7 +26,7 @@ const config = { /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { - routeBasePath: "/", + routeBasePath: '/', sidebarPath: require.resolve('./sidebars.js'), // Please change this to your repo. // Remove this to remove the "edit this page" links. @@ -37,7 +36,11 @@ const config = { showReadingTime: true, // Please change this to your repo. // Remove this to remove the "edit this page" links. - editUrl: 'https://github.com/ark-network/ark/edit/master/website/blog', + editUrl: + 'https://github.com/ark-network/ark/edit/master/website/blog', + + blogTitle: 'Ark blog', + blogDescription: 'Posts about Ark development', }, }), ], @@ -90,7 +93,7 @@ const config = { { label: 'Leave an Ark', to: '/learn/leaving', - } + }, ], }, { @@ -124,7 +127,7 @@ const config = { { label: 'Github', href: 'https://github.com/ark-network', - } + }, ], }, { @@ -133,10 +136,10 @@ const config = { { label: 'Blog', to: '/blog', - } + }, ], }, - ] + ], }, colorMode: { defaultMode: 'light',