Markdown Helper For Visual StudioAboutUse the amazing text-to-HTML tool Markdown to create HTML in Visual Studio. You can create a markdown file directly in Visual Studio and this tool will output the generated HTML as a file within the project. I am currently using it to output a partial view for ASP.NET MVC3 for a help/FAQ page. It allows me to write the page using Markdown and have the generated file used as a partial view without me having to copy and paste from a markdown converter to Visual Studio. How ToNaming Convention for your markdown filesSo the tool can infer what file extension you would like to create you should use the following filename pattern:
examples:
produces:
Enabling the toolSet the "CustomTool" property on each of your markdown files to "Markdown". The HTML output will now be automatically created every time you save the markdown source file. Credits
|