Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 1.3 KB

File metadata and controls

64 lines (45 loc) · 1.3 KB

Welcome to Bergen Markdown reader

This is a beautiful, minimal Markdown reader for macOS .

Features

  • File Browser: Navigate through your files and directories
  • Markdown Preview: View markdown files with proper formatting
  • Dark Mode Support: Automatically adapts to your system preferences
  • Mermaid Diagram Support: Renders mermaid diagrams in your markdown

Mermaid Demo

graph TD
    A[Start] --> B{Is it a markdown file?}
    B -- Yes --> C[Display with formatting]
    B -- No --> D[Can't preview]
    C --> E[Support Mermaid diagrams]
    C --> F[Format text properly]
    C --> G[Support dark mode]
Loading

Basic Markdown Examples

Text Formatting

This is bold text and this is italic text.

Lists

Unordered list:

  • Item 1
  • Item 2
  • Item 3

Ordered list:

  1. First item
  2. Second item
  3. Third item

Code

Inline code: const app = 'bergen'

Code block:

function greet() {
  console.log('Hello, Bergen!');
}

Links

Visit React Native website

Getting Started

  1. Navigate through your directories using the sidebar
  2. Select any .md file to preview it
  3. The preview will automatically render markdown formatting
  4. Dark mode is supported based on your system settings

Enjoy using Bergen Markdown reader!