| Table of Contents |
|---|
| Features |
| FAQ |
| Development |
| Changelog |
| License |
- Portable Edition
- One single standalone html file, no further dependencies
- Download it to an usb drive and run it from there
- No network connection required
- No data is stored or transferred, so your data are private
- only ~300kB due to hard compression
- Syntax highlighting for code blocks
- Importing of existing Markdown files
- File download of Markdown and generated and prettyfied HTML
- Synchronous Scrolling for long files
- Partial support for mobile devices, that's the reason why the editor is above the preview
This application uses the marked library to convert markdown to html. It utilises the markup syntax from github flavored markdown where you also will find some basic examples. If you need the full reference, visit John Gruber's site.
Typically people who read from left to right look to the left side first. So it lets you focus on the result, not on your code.
This application implements modern web technologies. Older browsers which cannot run this app are loosers. Recommendation: use a newer browser.
No!
Please implement it yourself and send me a pull request.
Pull Requests will only accepted if they adapt current source structure and code style.
Before install, make sure you have installed bower, npm and gulp globally.
To begin with development, just type
npm install
bower install
make
in console.
make runs a gulp task that sets up some file watchers so you can just modify the source files
and everything will be compiled together automatically.
The compiled file contains the following resources:
- JavaScript (marked, Angular Light, CodeMirror)
- Compiled and uncss'd CSS
- Embedded Ubuntu Font
Embedded into the application are sources from the following software:
- Bootstrap (MIT-License)
- Bootswatch (MIT-License)
- Angular Light (MIT-License)
- CodeMirror (MIT-License)
- marked (MIT-License)
- lz-string (WTFPL)
- Ubuntu Font Family (Ubuntu Font License)
Also thanks to the developers of the following software:
V1.4.1, 22. Aug 2015:
- improved choppy animation in firefox: force to use hardware acceleration using a very small rotation around Y axis
V1.4, 09. Aug 2015:
- fixed animation to be activated only on h1 element
- fixed lost table styles
- added syntax highlighting for several popular languages
V1.3, 09. Aug 2015:
- fixed scrolling bug in webkit
- fixed placeholder
- added prefixes for animation keyframes for older browsers (especially webkit)
- improved font sizes and font weight of headlines
- added license information for embedded sources
V1.2, 03. Aug 2015:
- fixed lost styles on headlines due to uncss
V1.1, 03. Aug 2015:
- Implemented inline compression using lz-string to compress the whole body tag down to less than 230kB!
V1.0, 02. Aug 2015:
- Initial commit
The MIT License (MIT)
Copyright (c) 2015 Reiner Kempkes
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.