Skip to content

Commit 2b9f45e

Browse files
committed
release 1.1.1
1 parent 6aecfdd commit 2b9f45e

2 files changed

Lines changed: 30 additions & 9 deletions

File tree

README.md

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,34 @@
22

33
Brackets extension that adds Markdown editing support via a toolbar.
44

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
1233

1334
## Preferences
1435

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "alanhohn.markdown-toolbar",
33
"title": "Markdown Toolbar",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"engines": { "brackets": ">=1.0.0" },
66
"description": "Toolbar for writing documents in Markdown.",
7-
"keywords": ["brackets-extension", "markdown", "writing"],
7+
"keywords": ["markdown", "writing"],
88
"homepage": "https://github.com/alanhohn/markdown-toolbar",
99
"bugs": "https://github.com/alanhohn/markdown-toolbar/issues",
1010
"license": "MIT",

0 commit comments

Comments
 (0)