Skip to main content
DEVDIGEST
Watch
Read
Library
Daily
⌘K
Watch
Watch
Read
Library
Daily
Search
Subscribe
YouTube
GitHub
B
I
</>
Ln
H
List
HTML
Auto-save
Editor
Preview
209
w
1,199
c
1
m
# Markdown Preview Write markdown on the left and see it rendered on the right. ## Features This tool supports all the **basics** you need: - **Bold text** and *italic text* - ~~Strikethrough~~ for deleted content - `inline code` for technical terms - [Links](https://developersdigest.tech) to external pages ### Task Lists - [x] Build the markdown renderer - [x] Add live preview - [ ] Add toolbar - [ ] Ship it ### Nested Lists - Top level item - Nested item one - Nested item two - Deeply nested - Back to second level - Another top level ### Ordered nested 1. First step 1. Sub-step A 2. Sub-step B 2. Second step 3. Third step ### Code Blocks ``` function hello(name) { return `Hello, ${name}!`; } ``` ### Tables | Feature | Status | Notes | | --- | --- | --- | | Bold / Italic | Done | Uses regex | | Tables | Done | Pipes and dashes | | Task lists | Done | Checkbox style | ### Blockquotes > The best way to predict the future is to invent it. > - Alan Kay ### Images  ### Horizontal Rules --- That is everything. Start typing to see your own markdown rendered live.
209
w
1,199
c
1
m