Is there a 'scratch pad' window in Visual Studio

visual-studio, visual-studio-2008

Solution

I just found that visual studio has support for git style .md or markdown:

This provides good way of storing notes, requirements and developer instructions such as a readme.

- To use: Just add a file to your solution with a .md extension.

Problem

I currently use notepad to store little notes to myself about my code. This is usually a mixture of code and requirements. Is there a 'scratch pad' type window in VS where i could do this. The other alternative is to use code comment blocks in the source files, but that's not quite what I'm looking for.

Original source

Related problems