Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoehls committed Sep 20, 2011
0 parents commit f450de8
Show file tree
Hide file tree
Showing 22 changed files with 1,517 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -0,0 +1,5 @@
[bB]in
[oO]bj
_ReSharper.*
*.suo
*.ReSharper.*
20 changes: 20 additions & 0 deletions MarkdownWin.sln
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkdownWin", "src\MarkdownWin\MarkdownWin.csproj", "{F578EEC8-1C03-43B6-92A5-76C25D9A4F0F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F578EEC8-1C03-43B6-92A5-76C25D9A4F0F}.Debug|x86.ActiveCfg = Debug|x86
{F578EEC8-1C03-43B6-92A5-76C25D9A4F0F}.Debug|x86.Build.0 = Debug|x86
{F578EEC8-1C03-43B6-92A5-76C25D9A4F0F}.Release|x86.ActiveCfg = Release|x86
{F578EEC8-1C03-43B6-92A5-76C25D9A4F0F}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file not shown.
Binary file not shown.
Binary file not shown.
433 changes: 433 additions & 0 deletions packages/MarkdownSharp.1.13.0.0/lib/35/MarkdownSharp.xml

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions packages/repositories.config
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<repositories>
<repository path="..\JMark.WinForms\packages.config" />
</repositories>
21 changes: 21 additions & 0 deletions readme.md
@@ -0,0 +1,21 @@
## MarkdownWin

*A [Markdown](http://daringfireball.net/projects/markdown/) editor with live-preview for Windows.*

I built this because [MarkedApp](http://www.markedapp.com) isn't available for Windows.
Like MarkedApp, MarkdownWin will monitor a file for changes and keep the live preview
in sync with your file. You can use whatever editor you want.

We use [MarkdownSharp](http://code.google.com/p/markdownsharp/) to render the live preview.

### Features

* Preview your Markdown file live, while you edit it.
* Copy the HTML source to your clipboard with `CTRL+C`.
* Print it with `CTRL+P`.
* Float the preview window on top of other applications for easy viewing.

![Screenshot](https://raw.github.com/jpoehls/MarkdownWin/master/screenshot.png)

**Dev Requirements**
VS 2010, NuGet
Binary file added screenshot.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
235 changes: 235 additions & 0 deletions src/MarkdownWin/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f450de8

Please sign in to comment.