Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aslakhellesoy/wysiwyg-markdown
Proof of concept for a bidirectional Markdown-WYSIWYG editor
https://github.com/aslakhellesoy/wysiwyg-markdown
Last synced: about 2 months ago
JSON representation
Proof of concept for a bidirectional Markdown-WYSIWYG editor
- Host: GitHub
- URL: https://github.com/aslakhellesoy/wysiwyg-markdown
- Owner: aslakhellesoy
- Created: 2014-02-15T07:48:46.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-08T19:35:28.000Z (over 10 years ago)
- Last Synced: 2024-04-14T15:13:31.494Z (9 months ago)
- Size: 129 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Run the demo
```
bower install
python -m SimpleHTTPServer
open http://localhost:8000/
```Links:
* http://quilljs.com/
* https://github.com/yoavram/markx
* http://mashable.com/2013/06/24/markdown-tools/
* http://imperavi.com/redactor/
* http://daviferreira.github.io/medium-editor/## Content Editable
See https://developer.mozilla.org/en/docs/Rich-Text_Editing_in_Mozilla
The commands that are relevant to Markdown are:
* bold
* formatBlock (maybe)
* heading
* indent
* insertBrOnReturn
* insertHorizontalRule
* insertHTML (maybe)
* insertImage
* insertOrderedList
* insertUnorderedList
* insertParagraph
* insertText
* italic
* outdent
* strikeThrough (exists in GFM)