[BREAKGLASS] BTCPay Server Official Blog https://blog.btcpayserver.org
Go to file
rockstardev 860091fa7d
Some checks failed
Build / build (16) (push) Has been cancelled
Update migration date and fix version references
2026-03-24 18:47:34 -05:00
.github Upgrade dependencies and remove linkcheck 2023-02-28 11:06:30 +01:00
blog Update migration date and fix version references 2026-03-24 18:47:34 -05:00
.DS_Store add bhb24 case study 2024-09-25 10:00:50 +02:00
.editorconfig Initial commit 2021-06-19 20:01:34 +02:00
.gitignore fix build for windows machines 2022-05-09 12:49:48 +02:00
create-redirects.js Initial commit 2021-06-19 20:01:34 +02:00
jest.config.js Initial commit 2021-06-19 20:01:34 +02:00
LICENSE Initial commit 2021-06-19 20:01:34 +02:00
package-lock.json Add 2025 report and update dependencies 2026-01-20 17:34:40 +01:00
package.json Add BitcoinNews Nicolas interview + 2025-07-24 14:08:25 +05:00
prettier.config.js Prettify files 2021-07-12 18:48:36 +02:00
README.md Upgrade dependencies and remove linkcheck 2023-02-28 11:06:30 +01:00

BTCPay Server Blog

Build

Based on the VuePress blog plugin.

Build the blog locally

In order to build the website locally, you'll need Node.js >= 14 (or basically the latest LTS version). A prerequisite for the setup-deps.sh script is jq.

The setup is straight forward:

# Install dependencies
npm install

# Serve locally
npm start

Text Highlights

There are three types of text highlights that can be used to display different colored boxes.

A green box displaying a friendly tip:

:::tip
foo
:::

A yellow box with a cautious warning:

:::warning
foo
:::

A red box with a clear danger, you can also add a title foo to any container:

:::danger foo
bar
:::

SEO improvements

We are using the Vuepress SEO plugin to add relevant meta tags to the site and individual pages.

To improve the meta attributes of a specific page, you can add them as YAML frontmatter like this: (see the WooCommerce page for an example)

---
description: How to integrate BTCPay Server into your WooCommerce store.
tags:
- WooCommerce
- WordPress
- Plugin
- eCommerce
---
# WooCommerce integration

This document explains how to **integrate BTCPay Server into your WooCommerce store**.

Embedding YouTube videos

To add a YouTube video with a preview, you can so so by linking to it like this:

[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/mqdefault.jpg)](https://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)

Note that the link item need to be a preview image (either from YouTube or a custom one) to result in an embedded video.