feat: enhance JSDoc cheatsheet with quick reference section and improve layout

Add a dedicated quick reference section to the JSDoc cheatsheet, streamline the layout for better readability, and adjust sidebar and table of contents styles for consistency.
This commit is contained in:
Luke Hagar
2025-09-19 17:44:47 +00:00
parent 82090541ed
commit d2c72f1250
4 changed files with 223 additions and 62 deletions

View File

@@ -32,7 +32,7 @@ const CodeHighlighter = ({ code, language = "javascript" }: SyntaxHighlighterPro
wrapLines={true}
wrapLongLines={true}
PreTag={({ children, ...props }) => (
<pre className="!m-0 !p-0" {...props}>
<pre className="!m-0 p-2" {...props}>
{children}
</pre>
)}