Online markdown editor/viewer.
Deploy this app to Linode with a free $100 credit!
This is a online markdown editor/viewer.
This help you to edit markdown document with the power of web technology.
Try on Demo page.
Or Install on your local PC. Check Guide to how to install.
Part of Editor is depend on CodeMirror.It enabeles
Tab
keyFor more option, see programming API of CodeMirror, and Hack Markdown Edit
To Convert markdown to html, Markdown-Edit Use Github's API as default.
The raw API is not JSON-based. It takes a Markdown document as plaintext text/plain
or text/x-markdown
and renders it as plain Markdown without a repository context (just like a README.md file is rendered – this is the simplest way to preview a readme online).
For more infomation, See official Guide * GitHub API v3 * github-flavored-markdown
NOTICE : GitHub API v3 is limited 5000requests per hour.
If you checked radio Use marked for conveter
markdown-edit use marked
and highlight.js instad of Github's API.
It is faster than API call and make you enable to use this app at offline.
NOTICE : marked does not support anchor.
To display converted HTML like Github, Markdown-Edit apply github.css from highlight.js and github-style.css inspired by gollum.
<link rel="stylesheet" href="bower_components/highlightjs/styles/github.css">
<link rel="stylesheet" href="css/github-style.css">
If you want to see raw html what Github's API responsed, click Raw .html
button on navbar.
use git
git clone http://github.com/georegeosddev/markdown-edit.git
Or download from Here
use bower
bower install
To avoid ajax error yous should deploy whole files to some web server.
If you are using mac,
ln -s /path/to/markdown-edit ~/Sites/markdown-edit
Then access http://localhost/~usernamehere/markdown-edit
If you have installed python,this way is very easy.
cd /path/to/markdown-edit
python -m SimpleHTTPServer 4567
Then access http://localhost:4567
NOTICE :Google Chrome upper v22.0 is most desirable browser.
Only text file is enable to read.
This feature is not implemented yet.
So view file in Raw, and copy it to clipboard,then past it to your file by your self.
If you checked Auto Reload.
Document will convert into html per 5second if it was changed.
If you checked Enable Shortcut Key.
These shortcut will be enable.
⌘ + e
Win : ctrl + e
⌘ + o
Win : ctrl + o
⌘ + r
Win : ctrl + r
⌘ + m
Win : ctrl + m
⌘ + h
Win : ctrl + h
⌘ + alt + h
Win : ctrl + alt + h
If your are using chrome,
* Enter Full Screen Mode
Mac : ⌘ + shift + f
Win : F11
This app is based on github-flavored-markdown
If you're not already familiar with Markdown, you should spend 15 minutes and go over the excellent Markdown Syntax Guide at Daring Fireball.
You can use markdown syntax and also pure html like this.
ID |Name|Rank
----|----|----
1 |Tom Preston-Werner |Awesome
2 |Albert Einstein |Nearly as awesome
become
ID | Name | Rank |
---|---|---|
1 | Tom Preston-Werner | Awesome |
2 | Albert Einstein | Nearly as awesome |
and
<table>
<tr>
<th>ID</th><th>Name</th><th>Rank</th>
</tr>
<tr>
<td>1</td><td>Tom Preston-Werner</td><td>Awesome</td>
</tr>
<tr>
<td>2</td><td>Albert Einstein</td><td>Nearly as awesome</td>
</tr>
</table>
also become
ID | Name | Rank |
---|---|---|
1 | Tom Preston-Werner | Awesome |
2 | Albert Einstein | Nearly as awesome |
Source code can be found on github, licenced under MIT.
Developed by Takeharu.Oshida
Please login to review this project.
No reviews for this project yet.
Write notes and todos online in markdown with tag filtering…
Realtime collaborative notebook app based on Markdown that …
Leanote, Not Just A Notepad! Open source cloud notepad.
Comments (0)
Please login to join the discussion on this project.