CampusTools
Hub
Free tools for students
Tools
Blog
About
Contact
All Tools
Reset
Copy
PDF
Print
Sync scroll
Dark
Editor
Ln 1, Col 1
# Markdown Viewer Welcome to the **CampusToolsHub Markdown Viewer** — a powerful, free tool for students and developers. ## Features - 📝 **Live Preview** — See your changes in real-time - 🌙 **Dark/Light Mode** — Easy on the eyes - 📊 **Statistics** — Track words, characters, and reading time - 📄 **Export to PDF** — Download your rendered markdown - 📋 **Copy Markdown** — Quick copy to clipboard - 🔄 **Sync Scroll** — Editor and preview scroll together ## Markdown Basics ### Text Formatting *This text will be italic* **This text will be bold** ***This text is bold and italic*** ~~This text is strikethrough~~ ### Lists #### Unordered List - Item 1 - Item 2 - Nested item - Another nested #### Ordered List 1. First item 2. Second item 3. Third item #### Task List - [x] Complete this task - [x] Review documentation - [ ] Submit assignment - [ ] Celebrate! 🎉 ### Blockquotes > "The best way to predict the future is to create it." > — Peter Drucker ### Code Inline `code` looks like this. ```javascript function greet(name) { return `Hello, ${name}!`; } console.log(greet('Student')); ``` ```python def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) print(fibonacci(10)) ``` ### Tables | Feature | Supported | |---------|-----------| | Headers | ✅ | | Bold | ✅ | | Lists | ✅ | | Tables | ✅ | | Code | ✅ | ### Links and Images [Visit CampusToolsHub](https://campustoolshub.com)  --- ## Math Expressions (LaTeX) Inline math: $E = mc^2$ Block math: $$ \sum_{i=1}^{n} i = \frac{n(n+1)}{2} $$ --- *Start editing on the left to see your changes here!*
Preview
Words
0
Chars
0
Lines
0
Headings
0
Dark mode