From dac5aa67afa71a0780bb7f709ded5f1382ef1764 Mon Sep 17 00:00:00 2001 From: Michael Mior Date: Mon, 2 Dec 2024 07:45:43 -0500 Subject: [PATCH] Fix capitalization of GitHub --- .vitepress/config.js | 2 +- parser/playground.md | 2 +- visualizations.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.vitepress/config.js b/.vitepress/config.js index 386d1de..7ca7945 100644 --- a/.vitepress/config.js +++ b/.vitepress/config.js @@ -123,7 +123,7 @@ export default { text: "Links", items: [ { - text: "Github", + text: "GitHub", link: "https://github.com/mark-when/markwhen", }, { diff --git a/parser/playground.md b/parser/playground.md index 2a5784d..e9ca248 100644 --- a/parser/playground.md +++ b/parser/playground.md @@ -4,6 +4,6 @@ import Parser from "../src/Parser.vue" # Playground -[Markwhen parser on github](https://github.com/mark-when/parser) +[Markwhen parser on GitHub](https://github.com/mark-when/parser) diff --git a/visualizations.md b/visualizations.md index 21cd104..359da8a 100644 --- a/visualizations.md +++ b/visualizations.md @@ -15,7 +15,7 @@ Markwhen and markwhen.com are built to be extensible, primarily in that the app ### View client library -Views communicate with the renderer/editor via [the view client library](http://www.npmjs.com/package/@markwhen/view-client) ([github](https://github.com/mark-when/view-client)). +Views communicate with the renderer/editor via [the view client library](http://www.npmjs.com/package/@markwhen/view-client) ([GitHub](https://github.com/mark-when/view-client)). The simplest implementation of a markwhen view would look something like the following: @@ -86,4 +86,4 @@ export function useLpc(listeners?: MessageListeners) { ... } The type of each entry in the `MessageTypes` interface is the type of the parameter that can come through as a message, either to the hosting app or, more likely, from the hosting app (hosting app meaning the view container; [this](https://github.com/mark-when/markwhen)). -In our simple example, we only have a listener for `state` updates. `state` updates contain information both on the state of the app (is dark mode on, if one of the events is currently selected, which page we're on, etc.) as well as the parsed markwhen document. These are contained in `state.app` and `state.markwhen` respectively. \ No newline at end of file +In our simple example, we only have a listener for `state` updates. `state` updates contain information both on the state of the app (is dark mode on, if one of the events is currently selected, which page we're on, etc.) as well as the parsed markwhen document. These are contained in `state.app` and `state.markwhen` respectively.