Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
lslab committed Sep 1, 2013
0 parents commit cbc2a16
Show file tree
Hide file tree
Showing 64 changed files with 18,930 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Thumbs.db
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.sln.docstates
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
[Bb]in
[Dd]ebug*/
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
*.vssscc
$tf*/
1 change: 1 addition & 0 deletions .tfignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
\.git
Empty file added Changelog.md
Empty file.
Empty file added Install.md
Empty file.
13 changes: 13 additions & 0 deletions License.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2013 lslab

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
42 changes: 42 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# YaMdEditor

"YaMdEditor" 是Yet Another Markdown Editor的简写。

YaMdeditor是免费开源的markdown文本编辑器,适用于Windows XP/Vista/7/8。

编辑器具备如下特性:
* 编辑和预览界面可同时上下或者左右显示。也可只显示编辑界面。
* 对性能敏感的用户,可以设置自动预览或者手动预览。
* 可以随时切换CSS文件,并在预览界面自动显示。
* 可以输出HTML到文件或剪贴板。
* 支持Markdown Extra mode

...等等

后续版本计划支持:
GFM
支持不同markdown 解析引擎。


程序代码采用C#开发,基于dotnetframework4.0
采用markdowndeep解析引擎

Download & Support site:
https://github.com/lslab/YaMdEditor

感谢:

MarkDown#Editor
Copyright (C) 2012-2013 M.Hibara, All rights reserved.
[https://github.com/hibara/MarkDownSharpEditor](https://github.com/hibara/MarkDownSharpEditor)

### Markdown - A text-to-HTML conversion tool for web writers
Copyright (c) 2004 John Gruber
[http://daringfireball.net/projects/markdown/](http://daringfireball.net/projects/markdown/)

### MarkdownDeep
[http://www.toptensoftware.com/markdowndeep/](http://www.toptensoftware.com/markdowndeep/)
Copyright 2010-2011 Topten Software

### Markdown css themes
[https://github.com/jasonm23/markdown-css-themes](https://github.com/jasonm23/markdown-css-themes)
24 changes: 24 additions & 0 deletions YaMdEditor.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YaMdEditor", "YaMdEditor\YaMdEditor.csproj", "{922CFA09-10EA-48F6-A727-9CF45DC26C21}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "YaMdEditorSetup", "YaMdEditorSetup\YaMdEditorSetup.vdproj", "{A5CD9A08-A059-486C-8E09-A312481EE176}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{922CFA09-10EA-48F6-A727-9CF45DC26C21}.Debug|x86.ActiveCfg = Debug|x86
{922CFA09-10EA-48F6-A727-9CF45DC26C21}.Debug|x86.Build.0 = Debug|x86
{922CFA09-10EA-48F6-A727-9CF45DC26C21}.Release|x86.ActiveCfg = Release|x86
{922CFA09-10EA-48F6-A727-9CF45DC26C21}.Release|x86.Build.0 = Release|x86
{A5CD9A08-A059-486C-8E09-A312481EE176}.Debug|x86.ActiveCfg = Debug
{A5CD9A08-A059-486C-8E09-A312481EE176}.Release|x86.ActiveCfg = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
29 changes: 29 additions & 0 deletions YaMdEditor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Thumbs.db
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.sln.docstates
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
[Bb]in
[Dd]ebug*/
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
*.vssscc
$tf*/
1 change: 1 addition & 0 deletions YaMdEditor/.tfignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
\.git
17 changes: 17 additions & 0 deletions YaMdEditor/AppHistory.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Xml.Serialization;

namespace YaMdEditor
{

public class AppHistory
{
public string md;
public string css;
}

}
Loading

0 comments on commit cbc2a16

Please sign in to comment.