You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _TODO.md
+6-57Lines changed: 6 additions & 57 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,12 +93,6 @@ if (window.matchMedia) {
93
93
94
94
Maybe change the "ready..." in the hero to "get in touch..."
95
95
96
-
## Tags
97
-
98
-
Add a "coreCategory" boolean prop to tags, and sort to only show those on the /articles path. That way we can have languages like Terraform or tech like Helm as tag categories.
99
-
100
-
Link to the second-order category from the "Skills/Technologies Preview" icons on the home page. They should have descriptions of the tech.
101
-
102
96
## Search Box
103
97
104
98
- Show article titles only in drop-down search result box, and dedupe results
@@ -131,6 +125,10 @@ Need a tooltip component for consistency. List to add tooltips to:
131
125
- "Report a Bug" in footer
132
126
- RSS feed icon in footer
133
127
128
+
[rerender diagrams when I switched color-scheme](https://github.com/mermaid-js/mermaid/issues/1945)
@@ -201,56 +199,7 @@ Let's work through each article section by section based on the H2 headers in th
201
199
202
200
## Stylings
203
201
204
-
- Better appearance of details and summary elements. The styling in rehype-tailwind is applying to the detail and summary elements generated by remark-custom-blocks.
205
202
-[Link](url)[[color=pink target=_blank .centered]] is not picking up styles
206
-
- remark-mark-plus highlight color needs adjusted.
207
-
- Highlighter component not rendering social share modal on hover and focus.
208
-
- Are we using breakpoints correctly - isn't iPhone wider than our `sm` breakpoint?
203
+
- Are we using breakpoints correctly - isn't iPhone wider than our `sm` breakpoint? (logical width of iphone 15 is logical width remains 393 or 430 points)
209
204
- Add scroll bar under header to show how far down you are on the page while reading
210
-
211
-
## Add theming to Mermaid
212
-
213
-
Mermaid theming, horizontal layout for desktop, vertical for mobile, using groups like in Code Tabs to add the media selectors e.g. `[g1:desktop]`
214
-
215
-
`graph TD`: Top-to-Bottom (Vertical).
216
-
`graph LR`: Left-to-Right (Horizontal).
217
-
218
-
`strategy: 'pre-mermaid'` in Mermaid config in `astro.config.ts`
219
-
220
-
This strategy replaces the element with a <preclass="mermaid"> element with only the diagram as its child. Given the example, this yields:
221
-
222
-
```html
223
-
<html>
224
-
<head>
225
-
<metacharset="utf-8" />
226
-
</head>
227
-
<body>
228
-
<preclass="mermaid">
229
-
graph TD;
230
-
A-->B;
231
-
A-->C;
232
-
B-->D;
233
-
C-->D;
234
-
</pre>
235
-
<preclass="mermaid">
236
-
graph TD;
237
-
A-->B;
238
-
A-->C;
239
-
B-->D;
240
-
C-->D;
241
-
</pre>
242
-
</body>
243
-
</html>
244
-
```
245
-
246
-
This allows Mermaid to render the diagram on the client side, for example using:
0 commit comments