Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crowdin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ files:
translation: /i18n/%two_letters_code%/docusaurus-plugin-content-docs/current/**/%original_file_name%
ignore : ['**/*.api.mdx', '**/*.info.mdx', '**/*.tag.mdx', '**/*.schema.mdx', '**/*.json']
# Meeting Notes Blog Markdown files
- source: /meeting-notes/**/*
- source: /meetings/**/*
translation: /i18n/%two_letters_code%/docusaurus-plugin-content-blog/**/%original_file_name%
# Pages Markdown files
- source: /src/pages/**/*
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const config: Config = {
"classic",
{
blog: {
path: 'meeting-notes',
path: 'meetings',
blogTitle: 'Meeting Notes',
blogDescription: 'Notes and recordings from the Stellar protocol & developers meetings',
blogSidebarTitle: 'All meetings',
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions nginx/includes/redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ rewrite ^/docs/learn/interactive/dapps "/docs/learn/interactive" permanent;
rewrite ^/docs/learn/networks$ "/docs/networks" permanent;
rewrite ^/docs/learn/fundamentals/networks$ "/docs/networks" permanent;

# Meetings: old slug formats
rewrite ^/meeting-notes/([0-9]{4})-([0-9]{2})-([0-9]{2})/?$ "/meetings/$1/$2/$3" permanent;
rewrite ^/meeting-notes(.*)$ "/meetings$1" permanent;

# Move some categories around
rewrite ^/docs/category/build-a-wallet$ "/docs/build/apps/wallet" permanent;
rewrite ^/docs/category/build-a-wallet-with-the-wallet-sdk$ "/docs/build/apps/wallet" permanent;
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"api": "yarn api:clean && yarn api:bundle && yarn api:gen",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"format:mdx": "prettier --config .prettierrc.js --write \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\"",
"ci-format:mdx": "prettier --config .prettierrc.js --write --log-level silent \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\"",
"check:mdx": "prettier --config .prettierrc.js -c \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\"",
"ci:mdx": "prettier --config .prettierrc.js \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\" -l --no-editorconfig",
"format:mdx": "prettier --config .prettierrc.js --write \"{docs,src/pages,meetings}/**/*.{md,mdx}\"",
"ci-format:mdx": "prettier --config .prettierrc.js --write --log-level silent \"{docs,src/pages,meetings}/**/*.{md,mdx}\"",
"check:mdx": "prettier --config .prettierrc.js -c \"{docs,src/pages,meetings}/**/*.{md,mdx}\"",
"ci:mdx": "prettier --config .prettierrc.js \"{docs,src/pages,meetings}/**/*.{md,mdx}\" -l --no-editorconfig",
"diff:mdx": "yarn ci-format:mdx && git diff -- . ':(exclude)package-lock.json' ':(exclude)package.json' ':(exclude)yarn.lock' | awk \"/diff --git/ {found=1} found {print}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
Expand Down
Loading