diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
index 1b39fcaa..931e47aa 100644
--- a/src/routes/+layout.svelte
+++ b/src/routes/+layout.svelte
@@ -653,6 +653,7 @@
+
+
+ -->
+
+
+ -->
diff --git a/src/routes/markdown-guide/+page.svelte b/src/routes/markdown-guide/+page.svelte
deleted file mode 100644
index 8dd440f8..00000000
--- a/src/routes/markdown-guide/+page.svelte
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
- {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} Markdown
- Guide · Stocknear
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Markdown Guide
-
-
- We use Markdown to format posts and comments on Stocknear. We support CommonMark and Github
- Flavored Markdown (with the exception of image tags and raw HTML).
-
-
-
-
-
-
- | Heading |
- # heading |
-
-
- | Bold |
- **bold text** |
-
-
- | Italic |
- *italic text* |
-
-
- | List |
- - Item 1 - Item 2 |
-
-
- | Ordered list |
- 1. Item 1 2. Item 2 |
-
-
- | Inline code |
- `some inline code` |
-
-
- | Code block |
- ``` some code here ``` |
-
-
- | Link |
- [link-text](https://en.wikipedia.org) |
-
-
- | Blockquote |
- > blockquote |
-
-
-
-
-
diff --git a/src/routes/market-flow/+page.svelte b/src/routes/market-flow/+page.svelte
index 62195893..d3b43693 100644
--- a/src/routes/market-flow/+page.svelte
+++ b/src/routes/market-flow/+page.svelte
@@ -326,12 +326,14 @@
},
labels: {
style: { color: $mode === "light" ? "black" : "white" },
- distance: 20, // Increases space between label and axis
+ distance: 10, // Increases space between label and axis
formatter: function () {
- return new Date(this.value).toLocaleTimeString("en-US", {
- hour: "2-digit",
- minute: "2-digit",
+ const date = new Date(this?.value);
+ const timeString = date?.toLocaleTimeString("en-US", {
+ hour: "numeric",
+ hour12: true,
});
+ return `${timeString.replace(/\s/g, " ")}`;
},
},
tickPositioner: function () {
diff --git a/src/routes/market-flow/sector-flow/+page.svelte b/src/routes/market-flow/sector-flow/+page.svelte
index 524a7c7f..d14ef6b5 100644
--- a/src/routes/market-flow/sector-flow/+page.svelte
+++ b/src/routes/market-flow/sector-flow/+page.svelte
@@ -350,15 +350,15 @@
dashStyle: "Solid",
},
labels: {
- style: {
- color: $mode === "light" ? "#545454" : "white",
- },
- distance: 20, // Increases space between label and axis
+ style: { color: $mode === "light" ? "black" : "white" },
+ distance: 10, // Increases space between label and axis
formatter: function () {
- return new Date(this.value).toLocaleTimeString("en-US", {
- hour: "2-digit",
- minute: "2-digit",
+ const date = new Date(this?.value);
+ const timeString = date?.toLocaleTimeString("en-US", {
+ hour: "numeric",
+ hour12: true,
});
+ return `${timeString.replace(/\s/g, " ")}`;
},
},
tickPositioner: function () {
@@ -516,7 +516,9 @@
findLastNonNull(marketTideData, "time"),
)}
-