Question

Tools and packages out there have been flourished to achieve Markdown2html with various styles of CSS. Oh, come on, who would need the CSS. My simple question is:

*Is there any package that support md2html without css for ST2 ? *

I used to be a VIMer, and the markdown plugin could convert. And the dingus is nested at webpage, I hate copy all my md and then copy back.

Is there any ZenCoding style? Somehow like select all my markdown lines and command+B to simply and elegantly changes to html?

Was it helpful?

Solution

Perhaps something like Markdown Preview? You could create a key binding for the following command and arguments.

{
    "keys": ["<your key binding>"],
    "command": "markdown_preview",
    "args": {
        "target": "sublime",
        "parser": "markdown"
    }
}

You would have to add a context to get it to run with cmd+b, but it's doable. Try out the plugin though and see if it does what you want first.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top