Can I leave markdown unprocessed in build?

Hi,

I’m writing up some site content with markdown and using Chrome Markdown Preview to view it. In the browser the source of the markdown is still marked up as markdown (wow, fun!) and the Markdown Preview is Github flavored.

Is there a way to run middleman build and leave a markdown file as markdown, unprocessed into html?

I’m using Passenger to view my src locally and because it uses a public folder, I’m just putting the content-mycontent.md files in there, then browsing to http://myproject.dev/content-mycontent.md. That’s all good, but what I’d like to do is include these markdown style content files in the build, so maybe I have a directory called content with those files in there or is it better to set up a stylesheet for my markdown files post-processed?

Thanks, any advice would be nice!

edit: I did a quick search from some Github Markdown CSS and found the source used for the Chrome extension in this Gist from Tuzz

Boy, I feel like a dope. It looks like the Chrome extension actually processes the .md file and displays HTML in the browser.