|
2 | 2 |
|
3 | 3 | Brackets extension that adds Markdown editing support via a toolbar. |
4 | 4 |
|
5 | | -## Status |
6 | | - |
7 | | -The toolbar is now generally functional, so I'm calling this the 1.0.0 release. |
8 | | -Line based items work (headings, lists, and quotes). Selection based items |
9 | | -(bold, italic, monospace) are somewhat reasonable, though they could be |
10 | | -smarter. Paragraph reflow seems to be pretty solid. Still to be implemented are |
11 | | -block-based items (code blocks, tables). |
| 5 | +## Features |
| 6 | + |
| 7 | +### Formatting |
| 8 | + |
| 9 | +* Heading (H1 - H6) toggles |
| 10 | +* Numbered and unnumbered lists |
| 11 | +* Bold, italic, monospace, strikethrough. Work as toggles, though |
| 12 | + they are a little picky about the selection in order to toggle off. |
| 13 | +* Code blocks |
| 14 | +* Buttons do sensible things with no selection, single selection, |
| 15 | + or multiple selections. |
| 16 | + |
| 17 | +### Converting to Markdown |
| 18 | + |
| 19 | +* Separate paragraphs: Adds a blank line between paragraphs. This is |
| 20 | + very handy for reformatting text pasted from a non-Markdown source |
| 21 | + such as a word processor. By its nature it can only be applied once, |
| 22 | + so it's important to control the selection. |
| 23 | +* Reflow: Reformats a paragraph to add hard line breaks to keep lines |
| 24 | + under a maximum length. Handles lists well, so it's pretty safe to |
| 25 | + apply it to a whole document. It is safe to apply multiple times or |
| 26 | + to repapply to a paragraph that is already partially correct. It does not |
| 27 | + handle tables well, so keep it away from those. |
| 28 | + |
| 29 | +## Planned Features |
| 30 | + |
| 31 | +* Add a button and a GUI to insert a Markdown table |
| 32 | +* Make reflow smart about tables |
12 | 33 |
|
13 | 34 | ## Preferences |
14 | 35 |
|
|
0 commit comments