Skip to main content

Getting Started with Documentation

Welcome to the learning documentation! This section contains various notes and guides to help you navigate through the documentation.

Documentation Structure

The documentation is organized into three main categories:

  1. Notes - General learning notes and concepts
  2. Programming Languages - Language-specific documentation and examples
  3. Frameworks - Framework-specific guides and tutorials

Interactive Code Examples

You can include interactive code examples in your documentation using CodeBlock with live preview:

function Button() {
return (
<button
onClick={() => alert('Hello!')}
style={{
backgroundColor: '#25c2a0',
border: 'none',
borderRadius: '20px',
color: '#fff',
padding: '10px 20px',
}}
>
Click me!
</button>
);
}

Writing Documentation

All documentation is written in Markdown format. You can use various Markdown features to structure your content:

Code Blocks

def hello_world():
print("Hello, World!")

Tables

FeatureDescription
Markdown SupportWrite documentation using Markdown
Live CodeInteractive code examples
NavigationEasy navigation between docs