
Table of Contents
- Enhanced Markdown Components: A Guide to Better Technical Writing
- Code Blocks with Style
- Interactive Blockquotes
- Enhanced Images
- Security Alerts
- Using These Components
- Component Properties
- CodeBlock Properties
- BlockQuote Properties
- EnhancedImage Properties
- SecurityAlert Properties
- Best Practices
- Conclusion
- New Components
- Code Comparison
- Interactive Quiz
- Web Application Security
- Web Protocol Fundamentals
- Advanced Vulnerabilities
- Flow Diagrams
- YouTube Video Embed
Welcome to an exciting update to our markdown components! We've enhanced our technical writing capabilities with a suite of new, interactive components that make your content more engaging and easier to understand.
Our new code blocks come with syntax highlighting, line numbers, and a copy button:
1def check_security(url, payload):
2 # Validate input parameters
3 if not is_valid_url(url):
4 raise ValueError("Invalid URL provided")
5
6 response = requests.post(url, json=payload)
7 return response.json()
We've added different types of blockquotes for various content types:
This is a standard information block that can be used for general notes and explanations.
Use this for important warnings that readers should pay attention to.
Perfect for security-related warnings and best practices.
Share helpful tips and tricks with your readers.
Images now support lightbox view, captions, and lazy loading:

For security-focused content, we've added specialized alert components:
Critical Security Alert
CVE-2023-12345A critical vulnerability has been discovered in the example package that could lead to remote code execution.
Mitigation Steps
High Security Alert
CVE-2023-67890A high-severity vulnerability affecting authentication mechanisms has been identified.
Mitigation Steps
To use these components in your MDX files, first import them:
1import {
2 CodeBlock,
3 BlockQuote,
4 EnhancedImage,
5 SecurityAlert,
6 TableOfContents
7} from '@/components/mdx';
8
9// Then use them in your MDX content
10<CodeBlock language="python">
11 your code here
12</CodeBlock>
language
: Programming language for syntax highlightingshowLineNumbers
: Boolean to show/hide line numbersenableCopy
: Boolean to show/hide copy buttonhighlightLines
: Array or string of lines to highlighttheme
: Override the default theme
type
: 'info' | 'warning' | 'security' | 'tip'title
: Optional title for the blockquoteicon
: Boolean to show/hide iconcollapsible
: Boolean to make content collapsible
src
: Image source URLalt
: Alternative textcaption
: Optional image captionlazy
: Boolean for lazy loadingblur
: Optional blur data URLlightbox
: Boolean to enable lightbox view
severity
: 'critical' | 'high' | 'medium' | 'low'cve
: Optional CVE identifiercvss
: Optional CVSS scoremitigation
: String or component with mitigation steps
- Use appropriate components for different types of content
- Keep code blocks focused and well-commented
- Provide meaningful alt text for images
- Include security context when using SecurityAlert
- Structure content with clear headings for TableOfContents
All components are optimized for performance with lazy loading and code splitting where appropriate.
These enhanced markdown components make technical writing more engaging and accessible. They provide a better reading experience while maintaining good performance and accessibility standards.
We're constantly improving these components. If you have suggestions or feedback, please share them with us!
We've added these new components to further enhance the technical writing experience:
This component allows you to display code before and after a change, with a slider to compare them:
1function calculateTotal(items) {
2 let total = 0;
3 for (let i = 0; i < items.length; i++) {
4 total += items[i].price;
5 }
6 return total;
7}
1function calculateTotal(items) {
2 return items
3 .map(item => item.price)
4 .reduce((total, price) => total + price, 0);
5}
Test what you've learned with interactive questions:
Web Application Security
Web Protocol Fundamentals
Advanced Vulnerabilities
Visualize processes and architectures with interactive diagrams:
OAuth2 Authentication Flow
Simplified diagram of the OAuth2 authorization flow with authorization code
Embed YouTube videos with customizable options:
LLM Security: Risks, Vulnerabilities and Mitigations
Learn about the security implications of large language models and how to protect your applications
videoId
: YouTube video ID or full URLtitle
: Title displayed above the videodescription
: Optional description textstartTime
: Start time in seconds (default: 0)aspectRatio
: Aspect ratio of the player (default: "16/9")allowFullScreen
: Enable full-screen mode (default: true)showRelatedVideos
: Show related videos when finished (default: false)autoplay
: Automatically play the video (default: false)loop
: Loop the video (default: false)mute
: Mute the video (default: false)showControls
: Show video controls (default: true)showAnnotations
: Show video annotations (default: false)coverImage
: Custom thumbnail image path