A browser extension that renders Trello card descriptions as proper markdown when not in edit mode, finally bringing the long-requested table support and other markdown features to Trello.
This extension addresses a highly requested feature in the Trello community: the ability to render markdown tables and other markdown syntax directly in card descriptions. Users have been asking for this functionality for years!
# H1, ## H2, etc.)| Column 1 | Column 2 |)inline code[text](url)))**text**) and italic (*text*)~~text~~)> quote)- [ ] todo)---)Write your description using markdown syntax:
# Project Overview
## Tasks
| Task | Status | Assignee |
|------|--------|----------|
| Design | ✅ Done | Alice |
| Development | 🔄 In Progress | Bob |
| Testing | ⏳ Pending | Carol |
## Notes
- **Important**: Remember to update the documentation
- Use `git commit -m "message"` for commits
- > Don't forget to run tests before deploying
git clone https://github.com/pke/trello-markdown-descriptions.git
cd trello-markdown-descriptions
yarn install
# Build for all browsers
yarn build
# Build and package for distribution
yarn package:all
The extension automatically deploys to all stores when you create a release on GitHub.
# Deploy to specific store
npm run deploy:chrome
npm run deploy:firefox
npm run deploy:edge
npm run deploy:safari
# Deploy to all stores
npm run deploy:all
Create a .env file with your store credentials:
# Chrome Web Store
CHROME_CLIENT_ID=your_client_id
CHROME_CLIENT_SECRET=your_client_secret
CHROME_REFRESH_TOKEN=your_refresh_token
CHROME_APP_ID=your_app_id
# Firefox Add-ons
FIREFOX_JWT_ISSUER=your_jwt_issuer
FIREFOX_JWT_SECRET=your_jwt_secret
FIREFOX_ADDON_ID=your_addon_id
# Microsoft Edge Add-ons
EDGE_CLIENT_ID=your_client_id
EDGE_CLIENT_SECRET=your_client_secret
EDGE_PRODUCT_ID=your_product_id
This project is licensed under the MIT License - see the LICENSE file for details.