Skip to content

Commit 1e5b4a7

Browse files
committed
RSS feed
For #21 - also add cuts (---) to some files - using a hard coded site url for some reason
1 parent c44c87d commit 1e5b4a7

File tree

6 files changed

+1099
-537
lines changed

6 files changed

+1099
-537
lines changed

.vitepress/config.mts

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
import { defineConfig } from 'vitepress'
22
import footnote from 'markdown-it-footnote'
3+
import { RSSOptions, RssPlugin } from 'vitepress-plugin-rss'
4+
5+
6+
const title = "Code Hive Tx, LLC";
7+
const description = "Code Hive Tx, LLC is a small software consultancy located in Dripping Springs, Texas, USA.";
8+
const thisYear = new Date().getFullYear();
9+
const RSS: RSSOptions = {
10+
title,
11+
description,
12+
baseUrl: 'https://codehivetx.us',
13+
copyright: `Copyright (c) 2021-${thisYear}, Code Hive Tx, LLC`,
14+
};
315

416
// https://vitepress.dev/reference/site-config
517
export default defineConfig({
18+
vite: {
19+
plugins: [RssPlugin(RSS)],
20+
},
621
markdown: {
722
config: (md) => {
823
md.use(footnote);
@@ -57,8 +72,8 @@ export default defineConfig({
5772
"window.dataLayer = window.dataLayer || [];\nfunction gtag(){dataLayer.push(arguments);}\ngtag('js', new Date());\ngtag('config', 'G-QHK7PH5P59');",
5873
],
5974
],
60-
title: "Code Hive Tx, LLC",
61-
description: "Code Hive Tx, LLC is a small software consultancy located in Dripping Springs, Texas, USA.",
75+
title,
76+
description,
6277
themeConfig: {
6378
i18nRouting: true,
6479
// https://vitepress.dev/reference/default-theme-config

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- <https://codehivetx.us>
44

5-
## Made With Vue 3 + TypeScript + Vite + [Vitepress](vitepress.dev)
5+
## Made With Vue 3 + TypeScript + Vite + [Vitepress](https://vitepress.dev)
66

77
## Instructions here
88

en/posts/2024-bcp47.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ date: 2024-08-09
55

66
In discussions with clients as well as among the Digitally Disadvantaged Languages community, I’ve had discussions about [BCP 47][] Language Tags. I’m writing this up as a general overview, meant to benefit the globalization commuity.
77

8+
---
9+
810
**Edit: Thank you for all of the feedback—I continue to update this post.**
911

1012
## What is a Language Tag?

en/posts/2024-using-surveytool.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ date: 2024-05-20
55

66
As part of our work with the [CLDR Digitally Disadvantaged Languages (DDL)](https://cldr.unicode.org/ddl) workgroup, we created a training video for the Survey Tool. Enjoy!
77

8+
---
9+
810
<vimeo-player video-id="948529306"/>
911

1012
The Survey Tool has opened for data submission for version 46.

0 commit comments

Comments
 (0)