mikaeljorhult / brackets-todo

Brackets/Edge Code extension that displays all TODO comments in current document or project.
144 stars 37 forks source link

Suggestion: GitHub flavored markdown #84

Closed sbruchmann closed 10 years ago

sbruchmann commented 10 years ago

Hello @mikaeljorhult,

it would be great if this extension would support GitHub flavored markdown.

Example

Take the following code:

PDFDocument.create(options)
    .fail(function _handleError() {
        /**
         * @TODO Use error codes in order to simplify displaying of error dialogs (See #6)
        */
    });

The Todo-panel should now render the following message for the corresponding comment:

Line Tag Message
45 TODO Use error codes in order to simplify displaying of error dialogs (See #6)

The user should be able to configure the GitHub user / repository via the .todo-file:

{
    "github": {
        "user": "sbruchmann",
        "repository": "brackets-pdfexport"
    }
}

In case you didn’t know, marked would be perfect for this. What do you think about this feature?

mikaeljorhult commented 10 years ago

That's a interesting idea and would be a quite useful feature.

mikaeljorhult commented 10 years ago

This feature was just added to the master branch (1f93cdeffbba8a53e5cd1a5c5da72b3732881e57) and will be in the next release.

sbruchmann commented 10 years ago

Woah! That was really quick; Thank you for implementing this feature!