mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-03 08:04:29 -06:00
commit
8f590f4f96
9
.editorconfig
Normal file
9
.editorconfig
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
[*]
|
||||||
|
charset=utf-8
|
||||||
|
end_of_line=lf
|
||||||
|
insert_final_newline=true
|
||||||
|
indent_style=space
|
||||||
|
indent_size=4
|
||||||
|
|
||||||
|
[*.{yml,yaml}]
|
||||||
|
indent_size=2
|
15
.eslintrc
15
.eslintrc
@ -1,23 +1,20 @@
|
|||||||
{
|
{
|
||||||
"rules": {
|
"rules": {
|
||||||
"indent": [
|
|
||||||
2,
|
|
||||||
"tab"
|
|
||||||
],
|
|
||||||
"strict": 0,
|
"strict": 0,
|
||||||
"no-console": 0,
|
"no-console": 0,
|
||||||
"quotes": [
|
"quotes": [
|
||||||
2,
|
"error",
|
||||||
"double"
|
"single"
|
||||||
],
|
],
|
||||||
"semi": [
|
"semi": [
|
||||||
2,
|
"error",
|
||||||
"always"
|
"always"
|
||||||
]
|
],
|
||||||
|
"comma-dangle": ["error", "always-multiline"]
|
||||||
},
|
},
|
||||||
"env": {
|
"env": {
|
||||||
"browser": true,
|
"browser": true,
|
||||||
"node":true
|
"node": true
|
||||||
},
|
},
|
||||||
"extends": "eslint:recommended"
|
"extends": "eslint:recommended"
|
||||||
}
|
}
|
13
.github/ISSUE_TEMPLATE.md
vendored
Normal file
13
.github/ISSUE_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<!-- Please help me process issues faster by providing the following information -->
|
||||||
|
### I'm submitting a...
|
||||||
|
- [x] Bug report
|
||||||
|
- [ ] Feature request
|
||||||
|
|
||||||
|
### Reproduction steps
|
||||||
|
<!-- Bonus points if you set up a [JSFiddle](https://jsfiddle.net/) that replicates the bug and link it in the issue. -->
|
||||||
|
1. ...
|
||||||
|
2. ...
|
||||||
|
|
||||||
|
### Version information
|
||||||
|
Browser type and version:
|
||||||
|
EasyMDE version:
|
32
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
32
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
title: ''
|
||||||
|
labels: Bug
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Screenshots**
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
|
** Version information **
|
||||||
|
- OS: [e.g. Windows, MacOS]
|
||||||
|
- Browser: [e.g. Chrome 72]
|
||||||
|
- EasyMDE version: [e.g. 2.5.1]
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
name: Feature request
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: ''
|
||||||
|
labels: Feature
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Is your feature request related to a problem? Please describe.**
|
||||||
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
|
**Describe the solution you'd like**
|
||||||
|
A clear and concise description of what you want to happen.
|
||||||
|
|
||||||
|
**Describe alternatives you've considered**
|
||||||
|
A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context or screenshots/mock-ups about the feature request here.
|
11
.github/ISSUE_TEMPLATE/question.md
vendored
Normal file
11
.github/ISSUE_TEMPLATE/question.md
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
name: Question
|
||||||
|
about: Ask a question if anything is unclear
|
||||||
|
title: ''
|
||||||
|
labels: Question
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe your question**
|
||||||
|
Please describe your question in as much detail as possible.
|
12
.gitignore
vendored
12
.gitignore
vendored
@ -1,9 +1,13 @@
|
|||||||
localtesting/
|
# generated files
|
||||||
node_modules/
|
dist/
|
||||||
bower_components/
|
|
||||||
|
|
||||||
#For IDE
|
# NPM files
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# IDE files
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
*.iws
|
*.iws
|
||||||
.idea/
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
dev_test/
|
||||||
|
38
.travis.yml
38
.travis.yml
@ -1,18 +1,32 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- '6'
|
- '11' # EOL: June 2019
|
||||||
- '5'
|
- '10' # EOL: April 2021
|
||||||
- '4'
|
- '8' # EOL: December 2019
|
||||||
- '0.12'
|
- '6' # EOL: April 2019
|
||||||
before_script:
|
script:
|
||||||
- npm install -g gulp
|
- npm run prepare
|
||||||
script: gulp
|
- npm run test:types
|
||||||
|
before_deploy:
|
||||||
|
- if [ "$TRAVIS_BRANCH" = master ] && [ "$TRAVIS_PULL_REQUEST" = false ]; then npm version prerelease --no-git-tag-version --preid "$TRAVIS_BUILD_NUMBER"; fi
|
||||||
deploy:
|
deploy:
|
||||||
provider: npm
|
- provider: npm
|
||||||
email: support@nextstepwebs.com
|
email: info@saturnserver.org
|
||||||
api_key:
|
api_key:
|
||||||
secure: nADZupyOhJAhTQgr5uOIydbDEjCTAj+3nGHW7ZBJUrVJcb0uR4pg8ngmwrUpvaCeNXgKPG9Uag75/mPcBre9ly2cigBIG9LHlxImlF8qi1jRJykcNRmBb9N2MJJj+zdAMwLaF5Ns+f2v3zt97qxovbEzunhXGcZeCaxc6y40nDM8OTyo0PESNBjQYqaNblt2gO2KHysrwFL8i4kCCKLa+HOBLu2iqgk/fYVqTmfhEeOiiwQ4lIXJeyPyzgb3OPhKCMV1FI5H0T48fRD0MPczt8ds3Daj1OjCbIZurQ7s1dcKwz1g6TKATN59HcMsSarW4lImrEeYmfQxz2F5NjKDRhnith5V0W2IssrkpDG9teTFQ20eQdl5cpnlGjgBvsjb8GhPLR44GvefyJL4+kJGI3O1KVq3/7wbmu/IXrvhtKHEQSdGL2PTqW8QxKasAoUCnk3LGZKN12g8bg0xDg2tvoCUk5Z3asHLRdCJpDbBq1h8QfZ4HV5VLYjr84xduOUZbEUtfMVAixPpJ4h1E3OXJ1wil97BlHjxOZ8JkkxJg5lgSUZ/O/QWwJokEAYXR9c+ouMoVokChAyleV77cRZ5qLn9zbnUxZtnKX8w0IUKeu95/z8QgiaRcERKVCpZvceo8Qw0Y+JoiEtno7Zg/nsrZGxsS6K/V3yg1QQmT3bjDHQ=
|
secure: rp4P11u0Vvz6iTkC1uj9LfNVOJASnTjffpqpe9lhuC/php7+fdoYvZ4e1EwKj2RVbi7YNqZE6w+Y6fsxZk72N4RGVO6HROm6gNv2wl+qk0B1XwciONO9y5FhTcdZrsq5Vx5WdoZThs5CSkXpvtHiavAnAt1ufYjqKGBZOENdxJ40kkn9WdQG2WvG7iZWDlDpDoqof2uO9k89d2UuTG5DKAoMpN+4UH0Fr0gV0u11IcBeH7rlSo2btlMaMsSO9Nb10Zf1rC0USHfyrui/BKvVGeRh7FASYrHwjqt4bwqzKZlP5bZ4zGIPMYXXsGLcidxIvSsNIRp7cgkWvsywe8cIi5XzaM48afWsbMUfMgXi9BDNjK7vBiuPBnGWYS3ylJZn/7SvMuqsoj4De5GWrCJ5pTsEKD5yw5+iqQv7v2ZYhuN7/tTSoEy/BOMdN43zWquJp57LXkyFQ9esGoI0bfeYojV2BvcpwY/UFS27e/9bH+RBlXsLfP0kEtosVGZ6i3AuUKtsYOxo4QZSI4yHtP7fKsoCoJIvpW3hcWjrnI8N7IC18/KihsUByuMgDgTTXXtDKxLbNVjbiVvFJeuClwe1oc1uusY1v/EkNpGDFZX5zFEVv3zC76NaLB75kCUN3gGC0RRFk0J9i3k8qa42TLjbOqvxgRxOEtVeRxowBNrymIQ=
|
||||||
|
tag: next
|
||||||
|
skip_cleanup: true
|
||||||
on:
|
on:
|
||||||
|
node: 10
|
||||||
|
branch: master
|
||||||
|
repo: Ionaru/easy-markdown-editor
|
||||||
|
- provider: npm
|
||||||
|
email: info@saturnserver.org
|
||||||
|
api_key:
|
||||||
|
secure: rp4P11u0Vvz6iTkC1uj9LfNVOJASnTjffpqpe9lhuC/php7+fdoYvZ4e1EwKj2RVbi7YNqZE6w+Y6fsxZk72N4RGVO6HROm6gNv2wl+qk0B1XwciONO9y5FhTcdZrsq5Vx5WdoZThs5CSkXpvtHiavAnAt1ufYjqKGBZOENdxJ40kkn9WdQG2WvG7iZWDlDpDoqof2uO9k89d2UuTG5DKAoMpN+4UH0Fr0gV0u11IcBeH7rlSo2btlMaMsSO9Nb10Zf1rC0USHfyrui/BKvVGeRh7FASYrHwjqt4bwqzKZlP5bZ4zGIPMYXXsGLcidxIvSsNIRp7cgkWvsywe8cIi5XzaM48afWsbMUfMgXi9BDNjK7vBiuPBnGWYS3ylJZn/7SvMuqsoj4De5GWrCJ5pTsEKD5yw5+iqQv7v2ZYhuN7/tTSoEy/BOMdN43zWquJp57LXkyFQ9esGoI0bfeYojV2BvcpwY/UFS27e/9bH+RBlXsLfP0kEtosVGZ6i3AuUKtsYOxo4QZSI4yHtP7fKsoCoJIvpW3hcWjrnI8N7IC18/KihsUByuMgDgTTXXtDKxLbNVjbiVvFJeuClwe1oc1uusY1v/EkNpGDFZX5zFEVv3zC76NaLB75kCUN3gGC0RRFk0J9i3k8qa42TLjbOqvxgRxOEtVeRxowBNrymIQ=
|
||||||
|
skip_cleanup: true
|
||||||
|
on:
|
||||||
|
node: 10
|
||||||
|
branch: master
|
||||||
tags: true
|
tags: true
|
||||||
repo: NextStepWebs/simplemde-markdown-editor
|
repo: Ionaru/easy-markdown-editor
|
||||||
branch: production
|
|
||||||
|
135
CHANGELOG.md
Normal file
135
CHANGELOG.md
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
# EasyMDE Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
### Added
|
||||||
|
- Contributing guide (Thanks to [@roipoussiere], [#54]).
|
||||||
|
- Issue templates.
|
||||||
|
- Standardized changelog file.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Finish rewrite of README (Thanks to [@roipoussiere], [#54]).
|
||||||
|
- Image and link prompt fill with "https://" by default.
|
||||||
|
- Link to markdown guide to https://www.markdownguide.org/basic-syntax/.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Backwards compatibility in the API with SimpleMDE 1.0.0 ([#41]).
|
||||||
|
- Automatic publish of master branch to `@next`
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- Distribution files from source-control.
|
||||||
|
|
||||||
|
## [2.5.1] - 2019-01-17
|
||||||
|
### Fixed
|
||||||
|
- `role="button"` needed to be `type="button"` ([#45]).
|
||||||
|
|
||||||
|
## [2.5.0] - 2019-01-17
|
||||||
|
### Added
|
||||||
|
- Typescript support (Thanks to [@FranklinWhale], [#44]).
|
||||||
|
- `role="button"` to toolbar buttons ([#38]).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Eraser icon not working with FontAwesome 5.
|
||||||
|
|
||||||
|
## [2.4.2] - 2018-11-09
|
||||||
|
### Added
|
||||||
|
- Node.js 11 support.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Header button icons not showing sub-icons with FontAwesome 5.
|
||||||
|
- Inconsistent autosave behaviour when submitting a form (Thanks to [@Furgas] and [@adamb70], [#31]).
|
||||||
|
|
||||||
|
## [2.4.1] - 2018-10-15
|
||||||
|
### Added
|
||||||
|
- `fa-redo` class to redo button for FA5 compatibility (Thanks to [@Summon528], [#27]).
|
||||||
|
|
||||||
|
## [2.4.0] - 2018-10-15
|
||||||
|
### Added
|
||||||
|
- Theming support (Thanks to [@LeviticusMB], [#17]).
|
||||||
|
- onToggleFullscreen event hook (Thanks to [@n-3-0], [#16]).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fullscreen not working with `toolbar: false` (Thanks to [@aphitiel], [#19]).
|
||||||
|
|
||||||
|
## [2.2.2] - 2019-07-03
|
||||||
|
### Fixed
|
||||||
|
- Automatic publish only publishing tags.
|
||||||
|
|
||||||
|
## [2.2.1] - 2019-06-29
|
||||||
|
### Changed
|
||||||
|
- Attempt automatic publish `@next` version on npm.
|
||||||
|
- Links in the preview window will open in a new tab by default.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Multi-text select issue by disabling multi-select in the editor ([#10]).
|
||||||
|
- `main` file in package.json (Thanks to [@sne11ius], [#11]).
|
||||||
|
|
||||||
|
## [2.0.1] - 2018-05-13
|
||||||
|
### Changed
|
||||||
|
- Rewrote part of the documentation for EasyMDE.
|
||||||
|
- Updated gulp to version 4.0.0.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Icons for `heading-smaller`, `heading-bigger`, `heading-1`, `heading-2` and `heading-3` not showing ([#9]).
|
||||||
|
|
||||||
|
## [2.0.0] - 2018-04-23
|
||||||
|
Project forked from [SimpleMDE](https://github.com/sparksuite/simplemde-markdown-editor)
|
||||||
|
|
||||||
|
### BREAKING CHANGES
|
||||||
|
- Dropped Bower support.
|
||||||
|
- Dropped support for older Node.js versions.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- FontAwesome 5 support.
|
||||||
|
- Support for newer Node.js versions.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Packages are now version-locked.
|
||||||
|
- Simplified build script.
|
||||||
|
- Markdown guide button is no longer disabled in preview mode.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Cursor not always showing in "text" mode over the edit field
|
||||||
|
|
||||||
|
<!-- Linked issues -->
|
||||||
|
[#45]: https://github.com/Ionaru/easy-markdown-editor/issues/45
|
||||||
|
[#44]: https://github.com/Ionaru/easy-markdown-editor/issues/44
|
||||||
|
[#41]: https://github.com/Ionaru/easy-markdown-editor/issues/41
|
||||||
|
[#38]: https://github.com/Ionaru/easy-markdown-editor/issues/38
|
||||||
|
[#17]: https://github.com/Ionaru/easy-markdown-editor/issues/17
|
||||||
|
[#16]: https://github.com/Ionaru/easy-markdown-editor/issues/16
|
||||||
|
[#11]: https://github.com/Ionaru/easy-markdown-editor/issues/11
|
||||||
|
[#10]: https://github.com/Ionaru/easy-markdown-editor/issues/10
|
||||||
|
[#9]: https://github.com/Ionaru/easy-markdown-editor/issues/9
|
||||||
|
|
||||||
|
<!-- Linked PRs -->
|
||||||
|
[#54]: https://github.com/Ionaru/easy-markdown-editor/pull/54
|
||||||
|
[#31]: https://github.com/Ionaru/easy-markdown-editor/pull/31
|
||||||
|
[#27]: https://github.com/Ionaru/easy-markdown-editor/pull/27
|
||||||
|
[#19]: https://github.com/Ionaru/easy-markdown-editor/pull/19
|
||||||
|
|
||||||
|
<!-- Linked users -->
|
||||||
|
[@roipoussiere]: https://github.com/roipoussiere
|
||||||
|
[@FranklinWhale]: https://github.com/FranklinWhale
|
||||||
|
[@Furgas]: https://github.com/Furgas
|
||||||
|
[@adamb70]: https://github.com/adamb70
|
||||||
|
[@Summon528]: https://github.com/Summon528
|
||||||
|
[@LeviticusMB]: https://github.com/LeviticusMB
|
||||||
|
[@n-3-0]: https://github.com/n-3-0
|
||||||
|
[@aphitiel]: https://github.com/aphitiel
|
||||||
|
[@sne11ius]: https://github.com/sne11ius
|
||||||
|
|
||||||
|
<!-- Linked versions -->
|
||||||
|
[Unreleased]: https://github.com/Ionaru/easy-markdown-editor/compare/2.5.1...HEAD
|
||||||
|
[2.5.1]: https://github.com/Ionaru/easy-markdown-editor/compare/2.5.0...2.5.1
|
||||||
|
[2.5.0]: https://github.com/Ionaru/easy-markdown-editor/compare/2.4.2...2.5.0
|
||||||
|
[2.4.2]: https://github.com/Ionaru/easy-markdown-editor/compare/2.4.1...2.4.2
|
||||||
|
[2.4.1]: https://github.com/Ionaru/easy-markdown-editor/compare/2.4.0...2.4.1
|
||||||
|
[2.4.0]: https://github.com/Ionaru/easy-markdown-editor/compare/2.2.2...2.4.0
|
||||||
|
[2.2.2]: https://github.com/Ionaru/easy-markdown-editor/compare/2.2.1...2.2.2
|
||||||
|
[2.2.1]: https://github.com/Ionaru/easy-markdown-editor/compare/2.0.1...2.2.1
|
||||||
|
[2.0.1]: https://github.com/Ionaru/easy-markdown-editor/compare/2.0.0...2.0.1
|
||||||
|
[2.0.0]: https://github.com/Ionaru/easy-markdown-editor/compare/1.11.2...2.0.0
|
@ -1,10 +1,63 @@
|
|||||||
### Overview
|
# Contributing
|
||||||
First of all, thanks for your interest in helping make SimpleMDE even better. Contributions help resolve rare bugs, accomplish neat new features, polish the code, and improve the documentation.
|
|
||||||
|
|
||||||
### Guidelines for contributing
|
Hey, welcome to the party! 🎉
|
||||||
- The *most important* guideline for contributing is to compare against the `development` branch when creating a pull request. This allows time to test and modify code changes before merging them into the stable master branch with the next release.
|
|
||||||
- Travis CI is configured to build and verify all PRs. If your PR causes the build to fail, please add an additional commit that resolves any problems.
|
Thank you so much for contributing to EasyMDE. 😘
|
||||||
- If you really want to earn some brownie points, create a JSFiddle that demonstrates your code changes. Seriously, this helps immensely and allows one or multiple people to easily provide feedback on the great work you've done.
|
|
||||||
- When creating the JSFiddle, keep in mind that you can use http://rawgit.com for your files.
|
|
||||||
- Do your best to fully test your changes. Anticipate edge-case behavior.
|
## Asking questions, suggesting wonderful ideas or reporting bugs
|
||||||
- Try to keep your codebase that you're making changes to as up-to-date as possible with the origin. SimpleMDE creates new releases frequently, so it's easy to fall behind if you've been working on something new for a while.
|
|
||||||
|
You can [submit an issue️](https://github.com/Ionaru/easy-markdown-editor/issues/new) on this GitHub repository.
|
||||||
|
|
||||||
|
|
||||||
|
## Coding
|
||||||
|
|
||||||
|
### 📦 Prerequisites
|
||||||
|
|
||||||
|
You need Node.js and npm.
|
||||||
|
|
||||||
|
To install them on Debian-based systems:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
|
||||||
|
sudo apt-get install -y nodejs
|
||||||
|
echo -e "nodejs version:\t$(nodejs -v) \nnpm version:\t$(npm -v)"
|
||||||
|
# check that you have node.js and npm.
|
||||||
|
```
|
||||||
|
|
||||||
|
For other systems, please [read the official page](https://nodejs.org/en/download/).
|
||||||
|
|
||||||
|
|
||||||
|
### 🏗️ Installation
|
||||||
|
|
||||||
|
Here we go! 🤠 First, clone this repository:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/Ionaru/easy-markdown-editor.git
|
||||||
|
cd easy-markdown-editor
|
||||||
|
```
|
||||||
|
|
||||||
|
Then install the required dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
Yay! You are ready! 🍾
|
||||||
|
|
||||||
|
|
||||||
|
### ⤴️ Creating a pull request
|
||||||
|
|
||||||
|
1. First, [create a fork of this project](https://github.com/Ionaru/easy-markdown-editor/fork), and copy the https URL (*clone or download* button) of your project (something like https://github.com/YOUR_USERNAME/easy-markdown-editor.git );
|
||||||
|
2. a) If you already cloned and worked on the project: `git remote add source https://github.com/Ionaru/easy-markdown-editor.git`;
|
||||||
|
b) Otherwise, clone your fork: `git clone https://github.com/YOUR_USERNAME/easy-markdown-editor.git`;
|
||||||
|
3. Create a new dedicated branch `git checkout -b myMergeRequest`;
|
||||||
|
4. Write some nice code and commit your work. (Don't forget to add your changes to the changelog!);
|
||||||
|
5. Check files against the ESLint syntax and build minified versions: `gulp`;
|
||||||
|
6. Test your changes;
|
||||||
|
7. Push it to a dedicated branch `git push origin myMergeRequest`;
|
||||||
|
8. Go to the [main project page](https://github.com/Ionaru/easy-markdown-editor) and click on the button *Compare and pull request*, then fill the description.
|
||||||
|
|
||||||
|
If you want to make other pull requests, go back to the master branch (`git checkout master`), update it (`git pull --rebase source master`), then follow the instructions above from step 3.
|
||||||
|
|
||||||
|
Thank you! 💜
|
||||||
|
4
LICENSE
4
LICENSE
@ -1,6 +1,7 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2015 Next Step Webs, Inc.
|
Copyright (c) 2015 Sparksuite, Inc.
|
||||||
|
Copyright (c) 2017 Jeroen Akkerman.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
@ -19,4 +20,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
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
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
|
344
README.md
344
README.md
@ -1,84 +1,132 @@
|
|||||||
# SimpleMDE - Markdown Editor
|
# EasyMDE - Markdown Editor
|
||||||
A drop-in JavaScript textarea replacement for writing beautiful and understandable Markdown. The WYSIWYG-esque editor allows users who may be less experienced with Markdown to use familiar toolbar buttons and shortcuts. In addition, the syntax is rendered while editing to clearly show the expected result. Headings are larger, emphasized words are italicized, links are underlined, etc. SimpleMDE is one of the first editors to feature both built-in autosaving and spell checking.
|
|
||||||
|
|
||||||
[**Demo**](https://simplemde.com)
|
[](https://www.npmjs.com/package/easymde)
|
||||||
|
[](https://www.npmjs.com/package/easymde/v/next)
|
||||||
|
[](https://travis-ci.org/Ionaru/easy-markdown-editor)
|
||||||
|
|
||||||
[](https://simplemde.com)
|
> This repository is a fork of
|
||||||
|
[SimpleMDE, made by Sparksuite](https://github.com/sparksuite/simplemde-markdown-editor/).
|
||||||
|
Go to the [dedicated section](#simplemde-fork) for more information.
|
||||||
|
|
||||||
## Why not a WYSIWYG editor or pure Markdown?
|
A drop-in JavaScript text area replacement for writing beautiful and understandable Markdown.
|
||||||
WYSIWYG editors that produce HTML are often complex and buggy. Markdown solves this problem in many ways, plus Markdown can be rendered natively on more platforms than HTML. However, Markdown is not a syntax that an average user will be familiar with, nor is it visually clear while editing. In otherwords, for an unfamiliar user, the syntax they write will make little sense until they click the preview button. SimpleMDE has been designed to bridge this gap for non-technical users who are less familiar with or just learning Markdown syntax.
|
EasyMDE allows users who may be less experienced with Markdown to use familiar toolbar buttons and shortcuts.
|
||||||
|
|
||||||
## Install
|
In addition, the syntax is rendered while editing to clearly show the expected result. Headings are larger, emphasized words are italicized, links are underlined, etc.
|
||||||
|
|
||||||
|
EasyMDE also features both built-in auto saving and spell checking.
|
||||||
|
The editor is entirely customizable, from theming to toolbar buttons and javascript hooks.
|
||||||
|
|
||||||
|
[**Try the demo**](https://easymde.tk/)
|
||||||
|
|
||||||
|
[](https://easymde.tk/)
|
||||||
|
|
||||||
|
|
||||||
|
## Quick access
|
||||||
|
|
||||||
|
- [Install EasyMDE](#install-easymde)
|
||||||
|
- [How to use](#how-to-use)
|
||||||
|
- [Loading the editor](#loading-the-editor)
|
||||||
|
- [Editor functions](#editor-functions)
|
||||||
|
- [Configuration](#configuration)
|
||||||
|
- [Options list](#options-list)
|
||||||
|
- [Options example](#options-example)
|
||||||
|
- [Toolbar icons](#toolbar-icons)
|
||||||
|
- [Toolbar customization](#toolbar-customization)
|
||||||
|
- [Keyboard shortcuts](#keyboard-shortcuts)
|
||||||
|
- [Advanced use](#advanced-use)
|
||||||
|
- [Event handling](#event-handling)
|
||||||
|
- [Removing EasyMDE from text area](#removing-easymde-from-text-area)
|
||||||
|
- [Useful methods](#useful-methods)
|
||||||
|
- [How it works](#how-it-works)
|
||||||
|
- [SimpleMDE fork](#simplemde-fork)
|
||||||
|
- [Hacking EasyMDE](#hacking-easymde)
|
||||||
|
- [Contributing](#contributing)
|
||||||
|
- [License](#license)
|
||||||
|
|
||||||
|
|
||||||
|
## Install EasyMDE
|
||||||
|
|
||||||
|
Via [npm](https://www.npmjs.com/package/easymde):
|
||||||
|
|
||||||
Via [npm](https://www.npmjs.com/package/simplemde).
|
|
||||||
```
|
```
|
||||||
npm install simplemde --save
|
npm install easymde --save
|
||||||
```
|
```
|
||||||
|
|
||||||
Via [bower](https://www.bower.io).
|
Via the *UNPKG* CDN:
|
||||||
```
|
|
||||||
bower install simplemde --save
|
```html
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/easymde/dist/easymde.min.css">
|
||||||
|
<script src="https://unpkg.com/easymde/dist/easymde.min.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
Via [jsDelivr](https://www.jsdelivr.com/#!simplemde). *Please note, jsDelivr may take a few days to update to the latest release.*
|
|
||||||
|
|
||||||
```HTML
|
## How to use
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.css">
|
|
||||||
<script src="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.js"></script>
|
|
||||||
```
|
|
||||||
|
|
||||||
## Quick start
|
### Loading the editor
|
||||||
|
|
||||||
After installing, load SimpleMDE on the first textarea on a page
|
After installing and/or importing the module, you can load EasyMDE onto the first TextArea on the web page:
|
||||||
|
|
||||||
```HTML
|
```html
|
||||||
|
<textarea></textarea>
|
||||||
<script>
|
<script>
|
||||||
var simplemde = new SimpleMDE();
|
var easyMDE = new EasyMDE();
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Using a specific textarea
|
Alternatively you can select a specific TextArea, via Javascript:
|
||||||
|
|
||||||
Pure JavaScript method
|
```html
|
||||||
|
<textarea id="my-text-area"></textarea>
|
||||||
```HTML
|
|
||||||
<script>
|
<script>
|
||||||
var simplemde = new SimpleMDE({ element: document.getElementById("MyID") });
|
var easyMDE = new EasyMDE({element: document.getElementById('my-text-area')});
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
jQuery method
|
Or via jQuery:
|
||||||
|
|
||||||
```HTML
|
```html
|
||||||
|
<textarea id="my-text-area"></textarea>
|
||||||
<script>
|
<script>
|
||||||
var simplemde = new SimpleMDE({ element: $("#MyID")[0] });
|
var easyMDE = new EasyMDE({element: $('#my-text-area')[0]});
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Get/set the content
|
|
||||||
|
|
||||||
```JavaScript
|
### Editor functions
|
||||||
simplemde.value();
|
|
||||||
|
Use EasyMDE.value() to get the content of the editor:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<script>
|
||||||
|
easyMDE.value();
|
||||||
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
```JavaScript
|
Use EasyMDE.value(val) to set the content of the editor:
|
||||||
simplemde.value("This text will appear in the editor");
|
|
||||||
|
```html
|
||||||
|
<script>
|
||||||
|
easyMDE.value('New input for **EasyMDE**');
|
||||||
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
### Options list
|
||||||
|
|
||||||
- **autoDownloadFontAwesome**: If set to `true`, force downloads Font Awesome (used for icons). If set to `false`, prevents downloading. Defaults to `undefined`, which will intelligently check whether Font Awesome has already been included, then download accordingly.
|
- **autoDownloadFontAwesome**: If set to `true`, force downloads Font Awesome (used for icons). If set to `false`, prevents downloading. Defaults to `undefined`, which will intelligently check whether Font Awesome has already been included, then download accordingly.
|
||||||
- **autofocus**: If set to `true`, autofocuses the editor. Defaults to `false`.
|
- **autofocus**: If set to `true`, focuses the editor automatically. Defaults to `false`.
|
||||||
- **autosave**: *Saves the text that's being written and will load it back in the future. It will forget the text when the form it's contained in is submitted.*
|
- **autosave**: *Saves the text that's being written and will load it back in the future. It will forget the text when the form it's contained in is submitted.*
|
||||||
- **enabled**: If set to `true`, autosave the text. Defaults to `false`.
|
- **enabled**: If set to `true`, saves the text automatically. Defaults to `false`.
|
||||||
- **delay**: Delay between saves, in milliseconds. Defaults to `10000` (10s).
|
- **delay**: Delay between saves, in milliseconds. Defaults to `10000` (10s).
|
||||||
- **uniqueId**: You must set a unique string identifier so that SimpleMDE can autosave. Something that separates this from other instances of SimpleMDE elsewhere on your website.
|
- **uniqueId**: You must set a unique string identifier so that EasyMDE can autosave. Something that separates this from other instances of EasyMDE elsewhere on your website.
|
||||||
- **blockStyles**: Customize how certain buttons that style blocks of text behave.
|
- **blockStyles**: Customize how certain buttons that style blocks of text behave.
|
||||||
- **bold** Can be set to `**` or `__`. Defaults to `**`.
|
- **bold**: Can be set to `**` or `__`. Defaults to `**`.
|
||||||
- **code** Can be set to ```` ``` ```` or `~~~`. Defaults to ```` ``` ````.
|
- **code**: Can be set to ```` ``` ```` or `~~~`. Defaults to ```` ``` ````.
|
||||||
- **italic** Can be set to `*` or `_`. Defaults to `*`.
|
- **italic**: Can be set to `*` or `_`. Defaults to `*`.
|
||||||
- **element**: The DOM element for the textarea to use. Defaults to the first textarea on the page.
|
- **element**: The DOM element for the TextArea to use. Defaults to the first TextArea on the page.
|
||||||
- **forceSync**: If set to `true`, force text changes made in SimpleMDE to be immediately stored in original textarea. Defaults to `false`.
|
- **forceSync**: If set to `true`, force text changes made in EasyMDE to be immediately stored in original text area. Defaults to `false`.
|
||||||
- **hideIcons**: An array of icon names to hide. Can be used to hide specific icons shown by default without completely customizing the toolbar.
|
- **hideIcons**: An array of icon names to hide. Can be used to hide specific icons shown by default without completely customizing the toolbar.
|
||||||
- **indentWithTabs**: If set to `false`, indent using spaces instead of tabs. Defaults to `true`.
|
- **indentWithTabs**: If set to `false`, indent using spaces instead of tabs. Defaults to `true`.
|
||||||
- **initialValue**: If set, will customize the initial value of the editor.
|
- **initialValue**: If set, will customize the initial value of the editor.
|
||||||
@ -88,29 +136,42 @@ simplemde.value("This text will appear in the editor");
|
|||||||
- link
|
- link
|
||||||
- table
|
- table
|
||||||
- **lineWrapping**: If set to `false`, disable line wrapping. Defaults to `true`.
|
- **lineWrapping**: If set to `false`, disable line wrapping. Defaults to `true`.
|
||||||
|
- **minHeight**: Sets the minimum height for the composition area, before it starts auto-growing. Should be a string containing a valid CSS value like `"500px"`. Defaults to `"300px"`.
|
||||||
|
- **onToggleFullScreen**: A function that gets called when the editor's full screen mode is toggled. The function will be passed a boolean as parameter, `true` when the editor is currently going into full screen mode, or `false`.
|
||||||
- **parsingConfig**: Adjust settings for parsing the Markdown during editing (not previewing).
|
- **parsingConfig**: Adjust settings for parsing the Markdown during editing (not previewing).
|
||||||
- **allowAtxHeaderWithoutSpace**: If set to `true`, will render headers without a space after the `#`. Defaults to `false`.
|
- **allowAtxHeaderWithoutSpace**: If set to `true`, will render headers without a space after the `#`. Defaults to `false`.
|
||||||
- **strikethrough**: If set to `false`, will not process GFM strikethrough syntax. Defaults to `true`.
|
- **strikethrough**: If set to `false`, will not process GFM strikethrough syntax. Defaults to `true`.
|
||||||
- **underscoresBreakWords**: If set to `true`, let underscores be a delimiter for separating words. Defaults to `false`.
|
- **underscoresBreakWords**: If set to `true`, let underscores be a delimiter for separating words. Defaults to `false`.
|
||||||
- **placeholder**: Custom placeholder that should be displayed
|
- **placeholder**: If set, displays a custom placeholder message.
|
||||||
- **previewRender**: Custom function for parsing the plaintext Markdown and returning HTML. Used when user previews.
|
- **previewRender**: Custom function for parsing the plaintext Markdown and returning HTML. Used when user previews.
|
||||||
- **promptURLs**: If set to `true`, a JS alert window appears asking for the link or image URL. Defaults to `false`.
|
- **promptURLs**: If set to `true`, a JS alert window appears asking for the link or image URL. Defaults to `false`.
|
||||||
|
- **promptTexts**: Customize the text used to prompt for URLs.
|
||||||
|
- **image**: The text to use when prompting for an image's URL. Defaults to `URL of the image:`.
|
||||||
|
- **link**: The text to use when prompting for a link's URL. Defaults to `URL for the link:`.
|
||||||
- **renderingConfig**: Adjust settings for parsing the Markdown during previewing (not editing).
|
- **renderingConfig**: Adjust settings for parsing the Markdown during previewing (not editing).
|
||||||
|
- **codeSyntaxHighlighting**: If set to `true`, will highlight using [highlight.js](https://github.com/isagalaev/highlight.js). Defaults to `false`. To use this feature you must include highlight.js on your page or pass in using the `hljs` option. For example, include the script and the CSS files like:<br>`<script src="https://cdn.jsdelivr.net/highlight.js/latest/highlight.min.js"></script>`<br>`<link rel="stylesheet" href="https://cdn.jsdelivr.net/highlight.js/latest/styles/github.min.css">`
|
||||||
|
- **hljs**: An injectible instance of [highlight.js](https://github.com/isagalaev/highlight.js). If you don't want to rely on the global namespace (`window.hljs`), you can provide an instance here. Defaults to `undefined`.
|
||||||
|
- **markedOptions**: Set the internal Markdown renderer's [options](https://marked.js.org/#/USING_ADVANCED.md#options). Other `renderingConfig` options will take precedence.
|
||||||
- **singleLineBreaks**: If set to `false`, disable parsing GFM single line breaks. Defaults to `true`.
|
- **singleLineBreaks**: If set to `false`, disable parsing GFM single line breaks. Defaults to `true`.
|
||||||
- **codeSyntaxHighlighting**: If set to `true`, will highlight using [highlight.js](https://github.com/isagalaev/highlight.js). Defaults to `false`. To use this feature you must include highlight.js on your page. For example, include the script and the CSS files like:<br>`<script src="https://cdn.jsdelivr.net/highlight.js/latest/highlight.min.js"></script>`<br>`<link rel="stylesheet" href="https://cdn.jsdelivr.net/highlight.js/latest/styles/github.min.css">`
|
|
||||||
- **shortcuts**: Keyboard shortcuts associated with this instance. Defaults to the [array of shortcuts](#keyboard-shortcuts).
|
- **shortcuts**: Keyboard shortcuts associated with this instance. Defaults to the [array of shortcuts](#keyboard-shortcuts).
|
||||||
- **showIcons**: An array of icon names to show. Can be used to show specific icons hidden by default without completely customizing the toolbar.
|
- **showIcons**: An array of icon names to show. Can be used to show specific icons hidden by default without completely customizing the toolbar.
|
||||||
- **spellChecker**: If set to `false`, disable the spell checker. Defaults to `true`.
|
- **spellChecker**: If set to `false`, disable the spell checker. Defaults to `true`.
|
||||||
- **status**: If set to `false`, hide the status bar. Defaults to the array of built-in status bar items.
|
- **status**: If set to `false`, hide the status bar. Defaults to the array of built-in status bar items.
|
||||||
- Optionally, you can set an array of status bar items to include, and in what order. You can even define your own custom status bar items.
|
- Optionally, you can set an array of status bar items to include, and in what order. You can even define your own custom status bar items.
|
||||||
- **styleSelectedText**: If set to `false`, remove the `CodeMirror-selectedtext` class from selected lines. Defaults to `true`.
|
- **styleSelectedText**: If set to `false`, remove the `CodeMirror-selectedtext` class from selected lines. Defaults to `true`.
|
||||||
|
- **syncSideBySidePreviewScroll**: If set to `false`, disable syncing scroll in side by side mode. Defaults to `true`.
|
||||||
- **tabSize**: If set, customize the tab size. Defaults to `2`.
|
- **tabSize**: If set, customize the tab size. Defaults to `2`.
|
||||||
|
- **theme**: Override the theme. Defaults to `easymde`.
|
||||||
- **toolbar**: If set to `false`, hide the toolbar. Defaults to the [array of icons](#toolbar-icons).
|
- **toolbar**: If set to `false`, hide the toolbar. Defaults to the [array of icons](#toolbar-icons).
|
||||||
- **toolbarTips**: If set to `false`, disable toolbar button tips. Defaults to `true`.
|
- **toolbarTips**: If set to `false`, disable toolbar button tips. Defaults to `true`.
|
||||||
|
|
||||||
|
|
||||||
|
### Options example
|
||||||
|
|
||||||
|
Most options demonstrate the non-default behavior:
|
||||||
|
|
||||||
```JavaScript
|
```JavaScript
|
||||||
// Most options demonstrate the non-default behavior
|
var editor = new EasyMDE({
|
||||||
var simplemde = new SimpleMDE({
|
|
||||||
autofocus: true,
|
autofocus: true,
|
||||||
autosave: {
|
autosave: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
@ -119,7 +180,7 @@ var simplemde = new SimpleMDE({
|
|||||||
},
|
},
|
||||||
blockStyles: {
|
blockStyles: {
|
||||||
bold: "__",
|
bold: "__",
|
||||||
italic: "_"
|
italic: "_",
|
||||||
},
|
},
|
||||||
element: document.getElementById("MyID"),
|
element: document.getElementById("MyID"),
|
||||||
forceSync: true,
|
forceSync: true,
|
||||||
@ -133,6 +194,7 @@ var simplemde = new SimpleMDE({
|
|||||||
table: ["", "\n\n| Column 1 | Column 2 | Column 3 |\n| -------- | -------- | -------- |\n| Text | Text | Text |\n\n"],
|
table: ["", "\n\n| Column 1 | Column 2 | Column 3 |\n| -------- | -------- | -------- |\n| Text | Text | Text |\n\n"],
|
||||||
},
|
},
|
||||||
lineWrapping: false,
|
lineWrapping: false,
|
||||||
|
minHeight: "500px",
|
||||||
parsingConfig: {
|
parsingConfig: {
|
||||||
allowAtxHeaderWithoutSpace: true,
|
allowAtxHeaderWithoutSpace: true,
|
||||||
strikethrough: false,
|
strikethrough: false,
|
||||||
@ -150,6 +212,10 @@ var simplemde = new SimpleMDE({
|
|||||||
return "Loading...";
|
return "Loading...";
|
||||||
},
|
},
|
||||||
promptURLs: true,
|
promptURLs: true,
|
||||||
|
promptTexts: {
|
||||||
|
image: "Custom prompt for URL:",
|
||||||
|
link: "Custom prompt for URL:",
|
||||||
|
},
|
||||||
renderingConfig: {
|
renderingConfig: {
|
||||||
singleLineBreaks: false,
|
singleLineBreaks: false,
|
||||||
codeSyntaxHighlighting: true,
|
codeSyntaxHighlighting: true,
|
||||||
@ -169,18 +235,20 @@ var simplemde = new SimpleMDE({
|
|||||||
},
|
},
|
||||||
onUpdate: function(el) {
|
onUpdate: function(el) {
|
||||||
el.innerHTML = ++this.keystrokes + " Keystrokes";
|
el.innerHTML = ++this.keystrokes + " Keystrokes";
|
||||||
}
|
},
|
||||||
}], // Another optional usage, with a custom status bar item that counts keystrokes
|
}], // Another optional usage, with a custom status bar item that counts keystrokes
|
||||||
styleSelectedText: false,
|
styleSelectedText: false,
|
||||||
|
syncSideBySidePreviewScroll: false,
|
||||||
tabSize: 4,
|
tabSize: 4,
|
||||||
toolbar: false,
|
toolbar: false,
|
||||||
toolbarTips: false,
|
toolbarTips: false,
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Toolbar icons
|
|
||||||
|
|
||||||
Below are the built-in toolbar icons (only some of which are enabled by default), which can be reorganized however you like. "Name" is the name of the icon, referenced in the JS. "Action" is either a function or a URL to open. "Class" is the class given to the icon. "Tooltip" is the small tooltip that appears via the `title=""` attribute. Note that shortcut hints are added automatically and reflect the specified action if it has a keybind assigned to it (i.e. with the value of `action` set to `bold` and that of `tooltip` set to `Bold`, the final text the user will see would be "Bold (Ctrl-B)").
|
### Toolbar icons
|
||||||
|
|
||||||
|
Below are the built-in toolbar icons (only some of which are enabled by default), which can be reorganized however you like. "Name" is the name of the icon, referenced in the JS. "Action" is either a function or a URL to open. "Class" is the class given to the icon. "Tooltip" is the small tooltip that appears via the `title=""` attribute. Note that shortcut hints are added automatically and reflect the specified action if it has a key bind assigned to it (i.e. with the value of `action` set to `bold` and that of `tooltip` set to `Bold`, the final text the user will see would be "Bold (Ctrl-B)").
|
||||||
|
|
||||||
Additionally, you can add a separator between any icons by adding `"|"` to the toolbar array.
|
Additionally, you can add a separator between any icons by adding `"|"` to the toolbar array.
|
||||||
|
|
||||||
@ -192,14 +260,14 @@ strikethrough | toggleStrikethrough | Strikethrough<br>fa fa-strikethrough
|
|||||||
heading | toggleHeadingSmaller | Heading<br>fa fa-header
|
heading | toggleHeadingSmaller | Heading<br>fa fa-header
|
||||||
heading-smaller | toggleHeadingSmaller | Smaller Heading<br>fa fa-header
|
heading-smaller | toggleHeadingSmaller | Smaller Heading<br>fa fa-header
|
||||||
heading-bigger | toggleHeadingBigger | Bigger Heading<br>fa fa-lg fa-header
|
heading-bigger | toggleHeadingBigger | Bigger Heading<br>fa fa-lg fa-header
|
||||||
heading-1 | toggleHeading1 | Big Heading<br>fa fa-header fa-header-x fa-header-1
|
heading-1 | toggleHeading1 | Big Heading<br>fa fa-header header-1
|
||||||
heading-2 | toggleHeading2 | Medium Heading<br>fa fa-header fa-header-x fa-header-2
|
heading-2 | toggleHeading2 | Medium Heading<br>fa fa-header header-2
|
||||||
heading-3 | toggleHeading3 | Small Heading<br>fa fa-header fa-header-x fa-header-3
|
heading-3 | toggleHeading3 | Small Heading<br>fa fa-header header-3
|
||||||
code | toggleCodeBlock | Code<br>fa fa-code
|
code | toggleCodeBlock | Code<br>fa fa-code
|
||||||
quote | toggleBlockquote | Quote<br>fa fa-quote-left
|
quote | toggleBlockquote | Quote<br>fa fa-quote-left
|
||||||
unordered-list | toggleUnorderedList | Generic List<br>fa fa-list-ul
|
unordered-list | toggleUnorderedList | Generic List<br>fa fa-list-ul
|
||||||
ordered-list | toggleOrderedList | Numbered List<br>fa fa-list-ol
|
ordered-list | toggleOrderedList | Numbered List<br>fa fa-list-ol
|
||||||
clean-block | cleanBlock | Clean block<br>fa fa-eraser fa-clean-block
|
clean-block | cleanBlock | Clean block<br>fa fa-eraser
|
||||||
link | drawLink | Create Link<br>fa fa-link
|
link | drawLink | Create Link<br>fa fa-link
|
||||||
image | drawImage | Insert Image<br>fa fa-picture-o
|
image | drawImage | Insert Image<br>fa fa-picture-o
|
||||||
table | drawTable | Insert Table<br>fa fa-table
|
table | drawTable | Insert Table<br>fa fa-table
|
||||||
@ -207,21 +275,28 @@ horizontal-rule | drawHorizontalRule | Insert Horizontal Line<br>fa fa-minus
|
|||||||
preview | togglePreview | Toggle Preview<br>fa fa-eye no-disable
|
preview | togglePreview | Toggle Preview<br>fa fa-eye no-disable
|
||||||
side-by-side | toggleSideBySide | Toggle Side by Side<br>fa fa-columns no-disable no-mobile
|
side-by-side | toggleSideBySide | Toggle Side by Side<br>fa fa-columns no-disable no-mobile
|
||||||
fullscreen | toggleFullScreen | Toggle Fullscreen<br>fa fa-arrows-alt no-disable no-mobile
|
fullscreen | toggleFullScreen | Toggle Fullscreen<br>fa fa-arrows-alt no-disable no-mobile
|
||||||
guide | [This link](https://simplemde.com/markdown-guide) | Markdown Guide<br>fa fa-question-circle
|
guide | [This link](https://www.markdownguide.org/basic-syntax/) | Markdown Guide<br>fa fa-question-circle
|
||||||
|
|
||||||
Customize the toolbar using the `toolbar` option like:
|
|
||||||
|
### Toolbar customization
|
||||||
|
|
||||||
|
Customize the toolbar using the `toolbar` option.
|
||||||
|
|
||||||
|
Only the order of existing buttons:
|
||||||
|
|
||||||
```JavaScript
|
```JavaScript
|
||||||
// Customize only the order of existing buttons
|
var easyMDE = new EasyMDE({
|
||||||
var simplemde = new SimpleMDE({
|
toolbar: ["bold", "italic", "heading", "|", "quote"]
|
||||||
toolbar: ["bold", "italic", "heading", "|", "quote"],
|
|
||||||
});
|
});
|
||||||
|
```
|
||||||
|
|
||||||
// Customize all information and/or add your own icons
|
All information and/or add your own icons
|
||||||
var simplemde = new SimpleMDE({
|
|
||||||
|
```Javascript
|
||||||
|
var easyMDE = new EasyMDE({
|
||||||
toolbar: [{
|
toolbar: [{
|
||||||
name: "bold",
|
name: "bold",
|
||||||
action: SimpleMDE.toggleBold,
|
action: EasyMDE.toggleBold,
|
||||||
className: "fa fa-bold",
|
className: "fa fa-bold",
|
||||||
title: "Bold",
|
title: "Bold",
|
||||||
},
|
},
|
||||||
@ -233,41 +308,42 @@ var simplemde = new SimpleMDE({
|
|||||||
className: "fa fa-star",
|
className: "fa fa-star",
|
||||||
title: "Custom Button",
|
title: "Custom Button",
|
||||||
},
|
},
|
||||||
"|", // Separator
|
"|" // Separator
|
||||||
...
|
// [, ...]
|
||||||
],
|
]
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Keyboard shortcuts
|
|
||||||
|
|
||||||
SimpleMDE comes with an array of predefined keyboard shortcuts, but they can be altered with a configuration option. The list of default ones is as follows:
|
### Keyboard shortcuts
|
||||||
|
|
||||||
Shortcut | Action
|
EasyMDE comes with an array of predefined keyboard shortcuts, but they can be altered with a configuration option. The list of default ones is as follows:
|
||||||
:------- | :-----
|
|
||||||
*Cmd-'* | "toggleBlockquote"
|
Shortcut (Windows / Linux) | Shortcut (macOS) | Action
|
||||||
*Cmd-B* | "toggleBold"
|
:--- | :--- | :---
|
||||||
*Cmd-E* | "cleanBlock"
|
*Ctrl-'* | *Cmd-'* | "toggleBlockquote"
|
||||||
*Cmd-H* | "toggleHeadingSmaller"
|
*Ctrl-B* | *Cmd-B* | "toggleBold"
|
||||||
*Cmd-I* | "toggleItalic"
|
*Ctrl-E* | *Cmd-E* | "cleanBlock"
|
||||||
*Cmd-K* | "drawLink"
|
*Ctrl-H* | *Cmd-H* | "toggleHeadingSmaller"
|
||||||
*Cmd-L* | "toggleUnorderedList"
|
*Ctrl-I* | *Cmd-I* | "toggleItalic"
|
||||||
*Cmd-P* | "togglePreview"
|
*Ctrl-K* | *Cmd-K* | "drawLink"
|
||||||
*Cmd-Alt-C* | "toggleCodeBlock"
|
*Ctrl-L* | *Cmd-L* | "toggleUnorderedList"
|
||||||
*Cmd-Alt-I* | "drawImage"
|
*Ctrl-P* | *Cmd-P* | "togglePreview"
|
||||||
*Cmd-Alt-L* | "toggleOrderedList"
|
*Ctrl-Alt-C* | *Cmd-Alt-C* | "toggleCodeBlock"
|
||||||
*Shift-Cmd-H* | "toggleHeadingBigger"
|
*Ctrl-Alt-I* | *Cmd-Alt-I* | "drawImage"
|
||||||
*F9* | "toggleSideBySide"
|
*Ctrl-Alt-L* | *Cmd-Alt-L* | "toggleOrderedList"
|
||||||
*F11* | "toggleFullScreen"
|
*Shift-Ctrl-H* | *Shift-Cmd-H* | "toggleHeadingBigger"
|
||||||
|
*F9* | *F9* | "toggleSideBySide"
|
||||||
|
*F11* | *F11* | "toggleFullScreen"
|
||||||
|
|
||||||
Here is how you can change a few, while leaving others untouched:
|
Here is how you can change a few, while leaving others untouched:
|
||||||
|
|
||||||
```JavaScript
|
```JavaScript
|
||||||
var simplemde = new SimpleMDE({
|
var editor = new EasyMDE({
|
||||||
shortcuts: {
|
shortcuts: {
|
||||||
"toggleOrderedList": "Ctrl-Alt-K", // alter the shortcut for toggleOrderedList
|
"toggleOrderedList": "Ctrl-Alt-K", // alter the shortcut for toggleOrderedList
|
||||||
"toggleCodeBlock": null, // unbind Ctrl-Alt-C
|
"toggleCodeBlock": null, // unbind Ctrl-Alt-C
|
||||||
"drawTable": "Cmd-Alt-T" // bind Cmd-Alt-T to drawTable action, which doesn't come with a default shortcut
|
"drawTable": "Cmd-Alt-T", // bind Cmd-Alt-T to drawTable action, which doesn't come with a default shortcut
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
@ -276,56 +352,90 @@ Shortcuts are automatically converted between platforms. If you define a shortcu
|
|||||||
|
|
||||||
The list of actions that can be bound is the same as the list of built-in actions available for [toolbar buttons](#toolbar-icons).
|
The list of actions that can be bound is the same as the list of built-in actions available for [toolbar buttons](#toolbar-icons).
|
||||||
|
|
||||||
#### Height
|
|
||||||
|
|
||||||
To change the minimum height (before it starts auto-growing):
|
## Advanced use
|
||||||
|
|
||||||
```CSS
|
### Event handling
|
||||||
.CodeMirror, .CodeMirror-scroll {
|
|
||||||
min-height: 200px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Or, you can keep the height static:
|
|
||||||
|
|
||||||
```CSS
|
|
||||||
.CodeMirror {
|
|
||||||
height: 300px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Event handling
|
|
||||||
You can catch the following list of events: https://codemirror.net/doc/manual.html#events
|
You can catch the following list of events: https://codemirror.net/doc/manual.html#events
|
||||||
|
|
||||||
```JavaScript
|
```JavaScript
|
||||||
var simplemde = new SimpleMDE();
|
var easyMDE = new EasyMDE();
|
||||||
simplemde.codemirror.on("change", function(){
|
easyMDE.codemirror.on("change", function(){
|
||||||
console.log(simplemde.value());
|
console.log(easyMDE.value());
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
## Removing SimpleMDE from textarea
|
|
||||||
You can revert to the initial textarea by calling the `toTextArea` method. Note that this clears up the autosave (if enabled) associated with it. The textarea will retain any text from the destroyed SimpleMDE instance.
|
### Removing EasyMDE from text area
|
||||||
|
|
||||||
|
You can revert to the initial text area by calling the `toTextArea` method. Note that this clears up the autosave (if enabled) associated with it. The text area will retain any text from the destroyed EasyMDE instance.
|
||||||
|
|
||||||
```JavaScript
|
```JavaScript
|
||||||
var simplemde = new SimpleMDE();
|
var easyMDE = new EasyMDE();
|
||||||
...
|
// ...
|
||||||
simplemde.toTextArea();
|
easyMDE.toTextArea();
|
||||||
simplemde = null;
|
easyMDE = null;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Useful methods
|
|
||||||
The following self-explanatory methods may be of use while developing with SimpleMDE.
|
### Useful methods
|
||||||
|
|
||||||
|
The following self-explanatory methods may be of use while developing with EasyMDE.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var simplemde = new SimpleMDE();
|
var easyMDE = new EasyMDE();
|
||||||
simplemde.isPreviewActive(); // returns boolean
|
easyMDE.isPreviewActive(); // returns boolean
|
||||||
simplemde.isSideBySideActive(); // returns boolean
|
easyMDE.isSideBySideActive(); // returns boolean
|
||||||
simplemde.isFullscreenActive(); // returns boolean
|
easyMDE.isFullscreenActive(); // returns boolean
|
||||||
simplemde.clearAutosavedValue(); // no returned value
|
easyMDE.clearAutosavedValue(); // no returned value
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## How it works
|
## How it works
|
||||||
|
|
||||||
|
EasyMDE is a continuation of SimpleMDE.
|
||||||
|
|
||||||
SimpleMDE began as an improvement of [lepture's Editor project](https://github.com/lepture/editor), but has now taken on an identity of its own. It is bundled with [CodeMirror](https://github.com/codemirror/codemirror) and depends on [Font Awesome](http://fontawesome.io).
|
SimpleMDE began as an improvement of [lepture's Editor project](https://github.com/lepture/editor), but has now taken on an identity of its own. It is bundled with [CodeMirror](https://github.com/codemirror/codemirror) and depends on [Font Awesome](http://fontawesome.io).
|
||||||
|
|
||||||
CodeMirror is the backbone of the project and parses much of the Markdown syntax as it's being written. This allows us to add styles to the Markdown that's being written. Additionally, a toolbar and status bar have been added to the top and bottom, respectively. Previews are rendered by [Marked](https://github.com/chjj/marked) using GFM.
|
CodeMirror is the backbone of the project and parses much of the Markdown syntax as it's being written. This allows us to add styles to the Markdown that's being written. Additionally, a toolbar and status bar have been added to the top and bottom, respectively. Previews are rendered by [Marked](https://github.com/chjj/marked) using GFM.
|
||||||
|
|
||||||
|
|
||||||
|
## SimpleMDE fork
|
||||||
|
|
||||||
|
I originally made this fork to implement FontAwesome 5 compatibility into SimpleMDE. When that was done I submitted a [pull request](https://github.com/sparksuite/simplemde-markdown-editor/pull/666), which has not been accepted yet. This, and the project being inactive since May 2017, triggered me to make more changes and try to put new life into the project.
|
||||||
|
|
||||||
|
Changes include:
|
||||||
|
* FontAwesome 5 compatibility
|
||||||
|
* Guide button works when editor is in preview mode
|
||||||
|
* Links are now `https://` by default
|
||||||
|
* Small styling changes
|
||||||
|
* Support for Node 8 and beyond
|
||||||
|
* Lots of refactored code
|
||||||
|
* Links in preview will open in a new tab by default
|
||||||
|
* Typescript support
|
||||||
|
|
||||||
|
My intention is to continue development on this project, improving it and keeping it alive.
|
||||||
|
|
||||||
|
|
||||||
|
## Hacking EasyMDE
|
||||||
|
|
||||||
|
You may want to edit this library to adapt its behavior to your needs. This can be done in some quick steps:
|
||||||
|
|
||||||
|
1. Follow the [prerequisites](./CONTRIBUTING.md#prerequisites) and [installation](./CONTRIBUTING.md#installation) instructions in the contribution guide;
|
||||||
|
2. Do your changes;
|
||||||
|
3. Run `gulp` command, which will generate files: `dist/easymde.min.css` and `dist/easymde.min.js`;
|
||||||
|
4. Copy-paste those files to your code base, and you are done.
|
||||||
|
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Want to contribute to EasyMDE? Thank you! We have a [contribution guide](./CONTRIBUTING.md) just for you!
|
||||||
|
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This project is released under the [MIT License](./LICENSE).
|
||||||
|
|
||||||
|
- Copyright (c) 2015 Sparksuite, Inc.
|
||||||
|
- Copyright (c) 2017 Jeroen Akkerman.
|
||||||
|
23
bower.json
23
bower.json
@ -1,23 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "simplemde",
|
|
||||||
"version": "1.11.2",
|
|
||||||
"homepage": "https://github.com/NextStepWebs/simplemde-markdown-editor",
|
|
||||||
"authors": [
|
|
||||||
"Wes Cossick <https://wescossick.com>"
|
|
||||||
],
|
|
||||||
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor.",
|
|
||||||
"main": ["src/js/simplemde.js", "src/css/simplemde.css"],
|
|
||||||
"keywords": [
|
|
||||||
"embeddable",
|
|
||||||
"markdown",
|
|
||||||
"editor",
|
|
||||||
"javascript",
|
|
||||||
"wysiwyg"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"ignore": [
|
|
||||||
"**/.*",
|
|
||||||
"node_modules",
|
|
||||||
"bower_components"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,676 +0,0 @@
|
|||||||
/**
|
|
||||||
* simplemde v1.11.2
|
|
||||||
* Copyright Next Step Webs, Inc.
|
|
||||||
* @link https://github.com/NextStepWebs/simplemde-markdown-editor
|
|
||||||
* @license MIT
|
|
||||||
*/
|
|
||||||
/* BASICS */
|
|
||||||
|
|
||||||
.CodeMirror {
|
|
||||||
/* Set height, width, borders, and global font properties here */
|
|
||||||
font-family: monospace;
|
|
||||||
height: 300px;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* PADDING */
|
|
||||||
|
|
||||||
.CodeMirror-lines {
|
|
||||||
padding: 4px 0; /* Vertical padding around content */
|
|
||||||
}
|
|
||||||
.CodeMirror pre {
|
|
||||||
padding: 0 4px; /* Horizontal padding of content */
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
||||||
background-color: white; /* The little square between H and V scrollbars */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* GUTTER */
|
|
||||||
|
|
||||||
.CodeMirror-gutters {
|
|
||||||
border-right: 1px solid #ddd;
|
|
||||||
background-color: #f7f7f7;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
.CodeMirror-linenumbers {}
|
|
||||||
.CodeMirror-linenumber {
|
|
||||||
padding: 0 3px 0 5px;
|
|
||||||
min-width: 20px;
|
|
||||||
text-align: right;
|
|
||||||
color: #999;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-guttermarker { color: black; }
|
|
||||||
.CodeMirror-guttermarker-subtle { color: #999; }
|
|
||||||
|
|
||||||
/* CURSOR */
|
|
||||||
|
|
||||||
.CodeMirror-cursor {
|
|
||||||
border-left: 1px solid black;
|
|
||||||
border-right: none;
|
|
||||||
width: 0;
|
|
||||||
}
|
|
||||||
/* Shown when moving in bi-directional text */
|
|
||||||
.CodeMirror div.CodeMirror-secondarycursor {
|
|
||||||
border-left: 1px solid silver;
|
|
||||||
}
|
|
||||||
.cm-fat-cursor .CodeMirror-cursor {
|
|
||||||
width: auto;
|
|
||||||
border: 0 !important;
|
|
||||||
background: #7e7;
|
|
||||||
}
|
|
||||||
.cm-fat-cursor div.CodeMirror-cursors {
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cm-animate-fat-cursor {
|
|
||||||
width: auto;
|
|
||||||
border: 0;
|
|
||||||
-webkit-animation: blink 1.06s steps(1) infinite;
|
|
||||||
-moz-animation: blink 1.06s steps(1) infinite;
|
|
||||||
animation: blink 1.06s steps(1) infinite;
|
|
||||||
background-color: #7e7;
|
|
||||||
}
|
|
||||||
@-moz-keyframes blink {
|
|
||||||
0% {}
|
|
||||||
50% { background-color: transparent; }
|
|
||||||
100% {}
|
|
||||||
}
|
|
||||||
@-webkit-keyframes blink {
|
|
||||||
0% {}
|
|
||||||
50% { background-color: transparent; }
|
|
||||||
100% {}
|
|
||||||
}
|
|
||||||
@keyframes blink {
|
|
||||||
0% {}
|
|
||||||
50% { background-color: transparent; }
|
|
||||||
100% {}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Can style cursor different in overwrite (non-insert) mode */
|
|
||||||
.CodeMirror-overwrite .CodeMirror-cursor {}
|
|
||||||
|
|
||||||
.cm-tab { display: inline-block; text-decoration: inherit; }
|
|
||||||
|
|
||||||
.CodeMirror-ruler {
|
|
||||||
border-left: 1px solid #ccc;
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* DEFAULT THEME */
|
|
||||||
|
|
||||||
.cm-s-default .cm-header {color: blue;}
|
|
||||||
.cm-s-default .cm-quote {color: #090;}
|
|
||||||
.cm-negative {color: #d44;}
|
|
||||||
.cm-positive {color: #292;}
|
|
||||||
.cm-header, .cm-strong {font-weight: bold;}
|
|
||||||
.cm-em {font-style: italic;}
|
|
||||||
.cm-link {text-decoration: underline;}
|
|
||||||
.cm-strikethrough {text-decoration: line-through;}
|
|
||||||
|
|
||||||
.cm-s-default .cm-keyword {color: #708;}
|
|
||||||
.cm-s-default .cm-atom {color: #219;}
|
|
||||||
.cm-s-default .cm-number {color: #164;}
|
|
||||||
.cm-s-default .cm-def {color: #00f;}
|
|
||||||
.cm-s-default .cm-variable,
|
|
||||||
.cm-s-default .cm-punctuation,
|
|
||||||
.cm-s-default .cm-property,
|
|
||||||
.cm-s-default .cm-operator {}
|
|
||||||
.cm-s-default .cm-variable-2 {color: #05a;}
|
|
||||||
.cm-s-default .cm-variable-3 {color: #085;}
|
|
||||||
.cm-s-default .cm-comment {color: #a50;}
|
|
||||||
.cm-s-default .cm-string {color: #a11;}
|
|
||||||
.cm-s-default .cm-string-2 {color: #f50;}
|
|
||||||
.cm-s-default .cm-meta {color: #555;}
|
|
||||||
.cm-s-default .cm-qualifier {color: #555;}
|
|
||||||
.cm-s-default .cm-builtin {color: #30a;}
|
|
||||||
.cm-s-default .cm-bracket {color: #997;}
|
|
||||||
.cm-s-default .cm-tag {color: #170;}
|
|
||||||
.cm-s-default .cm-attribute {color: #00c;}
|
|
||||||
.cm-s-default .cm-hr {color: #999;}
|
|
||||||
.cm-s-default .cm-link {color: #00c;}
|
|
||||||
|
|
||||||
.cm-s-default .cm-error {color: #f00;}
|
|
||||||
.cm-invalidchar {color: #f00;}
|
|
||||||
|
|
||||||
.CodeMirror-composing { border-bottom: 2px solid; }
|
|
||||||
|
|
||||||
/* Default styles for common addons */
|
|
||||||
|
|
||||||
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
|
||||||
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
|
||||||
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
|
|
||||||
.CodeMirror-activeline-background {background: #e8f2ff;}
|
|
||||||
|
|
||||||
/* STOP */
|
|
||||||
|
|
||||||
/* The rest of this file contains styles related to the mechanics of
|
|
||||||
the editor. You probably shouldn't touch them. */
|
|
||||||
|
|
||||||
.CodeMirror {
|
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
|
||||||
background: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-scroll {
|
|
||||||
overflow: scroll !important; /* Things will break if this is overridden */
|
|
||||||
/* 30px is the magic margin used to hide the element's real scrollbars */
|
|
||||||
/* See overflow: hidden in .CodeMirror */
|
|
||||||
margin-bottom: -30px; margin-right: -30px;
|
|
||||||
padding-bottom: 30px;
|
|
||||||
height: 100%;
|
|
||||||
outline: none; /* Prevent dragging from highlighting the element */
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.CodeMirror-sizer {
|
|
||||||
position: relative;
|
|
||||||
border-right: 30px solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
|
||||||
before actual scrolling happens, thus preventing shaking and
|
|
||||||
flickering artifacts. */
|
|
||||||
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 6;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.CodeMirror-vscrollbar {
|
|
||||||
right: 0; top: 0;
|
|
||||||
overflow-x: hidden;
|
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
|
||||||
.CodeMirror-hscrollbar {
|
|
||||||
bottom: 0; left: 0;
|
|
||||||
overflow-y: hidden;
|
|
||||||
overflow-x: scroll;
|
|
||||||
}
|
|
||||||
.CodeMirror-scrollbar-filler {
|
|
||||||
right: 0; bottom: 0;
|
|
||||||
}
|
|
||||||
.CodeMirror-gutter-filler {
|
|
||||||
left: 0; bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-gutters {
|
|
||||||
position: absolute; left: 0; top: 0;
|
|
||||||
min-height: 100%;
|
|
||||||
z-index: 3;
|
|
||||||
}
|
|
||||||
.CodeMirror-gutter {
|
|
||||||
white-space: normal;
|
|
||||||
height: 100%;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
margin-bottom: -30px;
|
|
||||||
/* Hack to make IE7 behave */
|
|
||||||
*zoom:1;
|
|
||||||
*display:inline;
|
|
||||||
}
|
|
||||||
.CodeMirror-gutter-wrapper {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 4;
|
|
||||||
background: none !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.CodeMirror-gutter-background {
|
|
||||||
position: absolute;
|
|
||||||
top: 0; bottom: 0;
|
|
||||||
z-index: 4;
|
|
||||||
}
|
|
||||||
.CodeMirror-gutter-elt {
|
|
||||||
position: absolute;
|
|
||||||
cursor: default;
|
|
||||||
z-index: 4;
|
|
||||||
}
|
|
||||||
.CodeMirror-gutter-wrapper {
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-lines {
|
|
||||||
cursor: text;
|
|
||||||
min-height: 1px; /* prevents collapsing before first draw */
|
|
||||||
}
|
|
||||||
.CodeMirror pre {
|
|
||||||
/* Reset some styles that the rest of the page might have set */
|
|
||||||
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
|
||||||
border-width: 0;
|
|
||||||
background: transparent;
|
|
||||||
font-family: inherit;
|
|
||||||
font-size: inherit;
|
|
||||||
margin: 0;
|
|
||||||
white-space: pre;
|
|
||||||
word-wrap: normal;
|
|
||||||
line-height: inherit;
|
|
||||||
color: inherit;
|
|
||||||
z-index: 2;
|
|
||||||
position: relative;
|
|
||||||
overflow: visible;
|
|
||||||
-webkit-tap-highlight-color: transparent;
|
|
||||||
-webkit-font-variant-ligatures: none;
|
|
||||||
font-variant-ligatures: none;
|
|
||||||
}
|
|
||||||
.CodeMirror-wrap pre {
|
|
||||||
word-wrap: break-word;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
word-break: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-linebackground {
|
|
||||||
position: absolute;
|
|
||||||
left: 0; right: 0; top: 0; bottom: 0;
|
|
||||||
z-index: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-linewidget {
|
|
||||||
position: relative;
|
|
||||||
z-index: 2;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-widget {}
|
|
||||||
|
|
||||||
.CodeMirror-code {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Force content-box sizing for the elements where we expect it */
|
|
||||||
.CodeMirror-scroll,
|
|
||||||
.CodeMirror-sizer,
|
|
||||||
.CodeMirror-gutter,
|
|
||||||
.CodeMirror-gutters,
|
|
||||||
.CodeMirror-linenumber {
|
|
||||||
-moz-box-sizing: content-box;
|
|
||||||
box-sizing: content-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-measure {
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 0;
|
|
||||||
overflow: hidden;
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-cursor { position: absolute; }
|
|
||||||
.CodeMirror-measure pre { position: static; }
|
|
||||||
|
|
||||||
div.CodeMirror-cursors {
|
|
||||||
visibility: hidden;
|
|
||||||
position: relative;
|
|
||||||
z-index: 3;
|
|
||||||
}
|
|
||||||
div.CodeMirror-dragcursors {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-focused div.CodeMirror-cursors {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-selected { background: #d9d9d9; }
|
|
||||||
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
|
||||||
.CodeMirror-crosshair { cursor: crosshair; }
|
|
||||||
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
|
|
||||||
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
|
|
||||||
|
|
||||||
.cm-searching {
|
|
||||||
background: #ffa;
|
|
||||||
background: rgba(255, 255, 0, .4);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
|
||||||
.CodeMirror span { *vertical-align: text-bottom; }
|
|
||||||
|
|
||||||
/* Used to force a border model for a node */
|
|
||||||
.cm-force-border { padding-right: .1px; }
|
|
||||||
|
|
||||||
@media print {
|
|
||||||
/* Hide the cursor when printing */
|
|
||||||
.CodeMirror div.CodeMirror-cursors {
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* See issue #2901 */
|
|
||||||
.cm-tab-wrap-hack:after { content: ''; }
|
|
||||||
|
|
||||||
/* Help users use markselection to safely style text background */
|
|
||||||
span.CodeMirror-selectedtext { background: none; }
|
|
||||||
|
|
||||||
.CodeMirror {
|
|
||||||
height: auto;
|
|
||||||
min-height: 300px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
border-bottom-right-radius: 4px;
|
|
||||||
padding: 10px;
|
|
||||||
font: inherit;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-scroll {
|
|
||||||
min-height: 300px
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-fullscreen {
|
|
||||||
background: #fff;
|
|
||||||
position: fixed !important;
|
|
||||||
top: 50px;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
height: auto;
|
|
||||||
z-index: 9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-sided {
|
|
||||||
width: 50% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar {
|
|
||||||
position: relative;
|
|
||||||
opacity: .6;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
-o-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
padding: 0 10px;
|
|
||||||
border-top: 1px solid #bbb;
|
|
||||||
border-left: 1px solid #bbb;
|
|
||||||
border-right: 1px solid #bbb;
|
|
||||||
border-top-left-radius: 4px;
|
|
||||||
border-top-right-radius: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar:after,
|
|
||||||
.editor-toolbar:before {
|
|
||||||
display: block;
|
|
||||||
content: ' ';
|
|
||||||
height: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar:before {
|
|
||||||
margin-bottom: 8px
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar:after {
|
|
||||||
margin-top: 8px
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar:hover,
|
|
||||||
.editor-wrapper input.title:focus,
|
|
||||||
.editor-wrapper input.title:hover {
|
|
||||||
opacity: .8
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar.fullscreen {
|
|
||||||
width: 100%;
|
|
||||||
height: 50px;
|
|
||||||
overflow-x: auto;
|
|
||||||
overflow-y: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
padding-top: 10px;
|
|
||||||
padding-bottom: 10px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
background: #fff;
|
|
||||||
border: 0;
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
opacity: 1;
|
|
||||||
z-index: 9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar.fullscreen::before {
|
|
||||||
width: 20px;
|
|
||||||
height: 50px;
|
|
||||||
background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
|
||||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
|
|
||||||
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
|
||||||
background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
|
||||||
background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
|
||||||
background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar.fullscreen::after {
|
|
||||||
width: 20px;
|
|
||||||
height: 50px;
|
|
||||||
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
|
|
||||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)));
|
|
||||||
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
|
|
||||||
background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
|
|
||||||
background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
|
|
||||||
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a {
|
|
||||||
display: inline-block;
|
|
||||||
text-align: center;
|
|
||||||
text-decoration: none!important;
|
|
||||||
color: #2c3e50!important;
|
|
||||||
width: 30px;
|
|
||||||
height: 30px;
|
|
||||||
margin: 0;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
border-radius: 3px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a.active,
|
|
||||||
.editor-toolbar a:hover {
|
|
||||||
background: #fcfcfc;
|
|
||||||
border-color: #95a5a6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a:before {
|
|
||||||
line-height: 30px
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar i.separator {
|
|
||||||
display: inline-block;
|
|
||||||
width: 0;
|
|
||||||
border-left: 1px solid #d9d9d9;
|
|
||||||
border-right: 1px solid #fff;
|
|
||||||
color: transparent;
|
|
||||||
text-indent: -10px;
|
|
||||||
margin: 0 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-x:after {
|
|
||||||
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
|
|
||||||
font-size: 65%;
|
|
||||||
vertical-align: text-bottom;
|
|
||||||
position: relative;
|
|
||||||
top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-1:after {
|
|
||||||
content: "1";
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-2:after {
|
|
||||||
content: "2";
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-3:after {
|
|
||||||
content: "3";
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-bigger:after {
|
|
||||||
content: "▲";
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-smaller:after {
|
|
||||||
content: "▼";
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar.disabled-for-preview a:not(.no-disable) {
|
|
||||||
pointer-events: none;
|
|
||||||
background: #fff;
|
|
||||||
border-color: transparent;
|
|
||||||
text-shadow: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 700px) {
|
|
||||||
.editor-toolbar a.no-mobile {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-statusbar {
|
|
||||||
padding: 8px 10px;
|
|
||||||
font-size: 12px;
|
|
||||||
color: #959694;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-statusbar span {
|
|
||||||
display: inline-block;
|
|
||||||
min-width: 4em;
|
|
||||||
margin-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-statusbar .lines:before {
|
|
||||||
content: 'lines: '
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-statusbar .words:before {
|
|
||||||
content: 'words: '
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-statusbar .characters:before {
|
|
||||||
content: 'characters: '
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-preview {
|
|
||||||
padding: 10px;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
background: #fafafa;
|
|
||||||
z-index: 7;
|
|
||||||
overflow: auto;
|
|
||||||
display: none;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-preview-side {
|
|
||||||
padding: 10px;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
width: 50%;
|
|
||||||
top: 50px;
|
|
||||||
right: 0;
|
|
||||||
background: #fafafa;
|
|
||||||
z-index: 9;
|
|
||||||
overflow: auto;
|
|
||||||
display: none;
|
|
||||||
box-sizing: border-box;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-preview-active-side {
|
|
||||||
display: block
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-preview-active {
|
|
||||||
display: block
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-preview>p,
|
|
||||||
.editor-preview-side>p {
|
|
||||||
margin-top: 0
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-preview pre,
|
|
||||||
.editor-preview-side pre {
|
|
||||||
background: #eee;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-preview table td,
|
|
||||||
.editor-preview table th,
|
|
||||||
.editor-preview-side table td,
|
|
||||||
.editor-preview-side table th {
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-tag {
|
|
||||||
color: #63a35c;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-attribute {
|
|
||||||
color: #795da3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-string {
|
|
||||||
color: #183691;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-selected {
|
|
||||||
background: #d9d9d9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-1 {
|
|
||||||
font-size: 200%;
|
|
||||||
line-height: 200%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-2 {
|
|
||||||
font-size: 160%;
|
|
||||||
line-height: 160%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-3 {
|
|
||||||
font-size: 125%;
|
|
||||||
line-height: 125%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-4 {
|
|
||||||
font-size: 110%;
|
|
||||||
line-height: 110%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-comment {
|
|
||||||
background: rgba(0, 0, 0, .05);
|
|
||||||
border-radius: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-link {
|
|
||||||
color: #7f8c8d;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-url {
|
|
||||||
color: #aab2b3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-strikethrough {
|
|
||||||
text-decoration: line-through;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-placeholder {
|
|
||||||
opacity: .5;
|
|
||||||
}
|
|
||||||
.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word) {
|
|
||||||
background: rgba(255, 0, 0, .15);
|
|
||||||
}
|
|
17023
debug/simplemde.debug.js
17023
debug/simplemde.debug.js
File diff suppressed because one or more lines are too long
17019
debug/simplemde.js
17019
debug/simplemde.js
File diff suppressed because it is too large
Load Diff
7
dist/simplemde.min.css
vendored
7
dist/simplemde.min.css
vendored
File diff suppressed because one or more lines are too long
15
dist/simplemde.min.js
vendored
15
dist/simplemde.min.js
vendored
File diff suppressed because one or more lines are too long
115
gulpfile.js
115
gulpfile.js
@ -1,96 +1,57 @@
|
|||||||
"use strict";
|
'use strict';
|
||||||
|
|
||||||
var gulp = require("gulp"),
|
var gulp = require('gulp');
|
||||||
minifycss = require("gulp-clean-css"),
|
var cleanCSS = require('gulp-clean-css');
|
||||||
uglify = require("gulp-uglify"),
|
var uglify = require('gulp-uglify');
|
||||||
concat = require("gulp-concat"),
|
var concat = require('gulp-concat');
|
||||||
header = require("gulp-header"),
|
var header = require('gulp-header');
|
||||||
buffer = require("vinyl-buffer"),
|
var buffer = require('vinyl-buffer');
|
||||||
pkg = require("./package.json"),
|
var pkg = require('./package.json');
|
||||||
debug = require("gulp-debug"),
|
var eslint = require('gulp-eslint');
|
||||||
eslint = require("gulp-eslint"),
|
var browserify = require('browserify');
|
||||||
prettify = require("gulp-jsbeautifier"),
|
var source = require('vinyl-source-stream');
|
||||||
browserify = require("browserify"),
|
var rename = require('gulp-rename');
|
||||||
source = require("vinyl-source-stream"),
|
|
||||||
rename = require("gulp-rename");
|
|
||||||
|
|
||||||
var banner = ["/**",
|
var banner = ['/**',
|
||||||
" * <%= pkg.name %> v<%= pkg.version %>",
|
' * <%= pkg.name %> v<%= pkg.version %>',
|
||||||
" * Copyright <%= pkg.company %>",
|
' * Copyright <%= pkg.author %>',
|
||||||
" * @link <%= pkg.homepage %>",
|
' * @link <%= pkg.repository.url %>',
|
||||||
" * @license <%= pkg.license %>",
|
' * @license <%= pkg.license %>',
|
||||||
" */",
|
' */',
|
||||||
""].join("\n");
|
''].join('\n');
|
||||||
|
|
||||||
gulp.task("prettify-js", [], function() {
|
function lint() {
|
||||||
return gulp.src("./src/js/simplemde.js")
|
return gulp.src('./src/js/**/*.js')
|
||||||
.pipe(prettify({js: {brace_style: "collapse", indent_char: "\t", indent_size: 1, max_preserve_newlines: 3, space_before_conditional: false}}))
|
|
||||||
.pipe(gulp.dest("./src/js"));
|
|
||||||
});
|
|
||||||
|
|
||||||
gulp.task("prettify-css", [], function() {
|
|
||||||
return gulp.src("./src/css/simplemde.css")
|
|
||||||
.pipe(prettify({css: {indentChar: "\t", indentSize: 1}}))
|
|
||||||
.pipe(gulp.dest("./src/css"));
|
|
||||||
});
|
|
||||||
|
|
||||||
gulp.task("lint", ["prettify-js"], function() {
|
|
||||||
gulp.src("./src/js/**/*.js")
|
|
||||||
.pipe(debug())
|
|
||||||
.pipe(eslint())
|
.pipe(eslint())
|
||||||
.pipe(eslint.format())
|
.pipe(eslint.format())
|
||||||
.pipe(eslint.failAfterError());
|
.pipe(eslint.failAfterError());
|
||||||
});
|
|
||||||
|
|
||||||
function taskBrowserify(opts) {
|
|
||||||
return browserify("./src/js/simplemde.js", opts)
|
|
||||||
.bundle();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gulp.task("browserify:debug", ["lint"], function() {
|
function scripts() {
|
||||||
return taskBrowserify({debug:true, standalone:"SimpleMDE"})
|
return browserify({entries: './src/js/easymde.js', standalone: 'EasyMDE'}).bundle()
|
||||||
.pipe(source("simplemde.debug.js"))
|
.pipe(source('easymde.min.js'))
|
||||||
.pipe(buffer())
|
.pipe(buffer())
|
||||||
.pipe(header(banner, {pkg: pkg}))
|
|
||||||
.pipe(gulp.dest("./debug/"));
|
|
||||||
});
|
|
||||||
|
|
||||||
gulp.task("browserify", ["lint"], function() {
|
|
||||||
return taskBrowserify({standalone:"SimpleMDE"})
|
|
||||||
.pipe(source("simplemde.js"))
|
|
||||||
.pipe(buffer())
|
|
||||||
.pipe(header(banner, {pkg: pkg}))
|
|
||||||
.pipe(gulp.dest("./debug/"));
|
|
||||||
});
|
|
||||||
|
|
||||||
gulp.task("scripts", ["browserify:debug", "browserify", "lint"], function() {
|
|
||||||
var js_files = ["./debug/simplemde.js"];
|
|
||||||
|
|
||||||
return gulp.src(js_files)
|
|
||||||
.pipe(concat("simplemde.min.js"))
|
|
||||||
.pipe(uglify())
|
.pipe(uglify())
|
||||||
.pipe(buffer())
|
|
||||||
.pipe(header(banner, {pkg: pkg}))
|
.pipe(header(banner, {pkg: pkg}))
|
||||||
.pipe(gulp.dest("./dist/"));
|
.pipe(gulp.dest('./dist/'));
|
||||||
});
|
}
|
||||||
|
|
||||||
gulp.task("styles", ["prettify-css"], function() {
|
function styles() {
|
||||||
var css_files = [
|
var css_files = [
|
||||||
"./node_modules/codemirror/lib/codemirror.css",
|
'./node_modules/codemirror/lib/codemirror.css',
|
||||||
"./src/css/*.css",
|
'./src/css/*.css',
|
||||||
"./node_modules/codemirror-spell-checker/src/css/spell-checker.css"
|
'./node_modules/codemirror-spell-checker/src/css/spell-checker.css',
|
||||||
];
|
];
|
||||||
|
|
||||||
return gulp.src(css_files)
|
return gulp.src(css_files)
|
||||||
.pipe(concat("simplemde.css"))
|
.pipe(concat('easymde.css'))
|
||||||
|
.pipe(cleanCSS())
|
||||||
|
.pipe(rename('easymde.min.css'))
|
||||||
.pipe(buffer())
|
.pipe(buffer())
|
||||||
.pipe(header(banner, {pkg: pkg}))
|
.pipe(header(banner, {pkg: pkg}))
|
||||||
.pipe(gulp.dest("./debug/"))
|
.pipe(gulp.dest('./dist/'));
|
||||||
.pipe(minifycss())
|
}
|
||||||
.pipe(rename("simplemde.min.css"))
|
|
||||||
.pipe(buffer())
|
|
||||||
.pipe(header(banner, {pkg: pkg}))
|
|
||||||
.pipe(gulp.dest("./dist/"));
|
|
||||||
});
|
|
||||||
|
|
||||||
gulp.task("default", ["scripts", "styles"]);
|
var build = gulp.parallel(gulp.series(lint, scripts), styles);
|
||||||
|
|
||||||
|
gulp.task('default', build);
|
||||||
|
5640
package-lock.json
generated
Normal file
5640
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
63
package.json
63
package.json
@ -1,48 +1,51 @@
|
|||||||
{
|
{
|
||||||
"name": "simplemde",
|
"name": "easymde",
|
||||||
"version": "1.11.2",
|
"version": "2.5.1",
|
||||||
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor. Features autosaving and spell checking.",
|
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor that easy to use. Features include autosaving and spell checking.",
|
||||||
|
"files": [
|
||||||
|
"dist/**/*",
|
||||||
|
"src/**/*",
|
||||||
|
"types/easymde.d.ts"
|
||||||
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"embeddable",
|
"embeddable",
|
||||||
"markdown",
|
"markdown",
|
||||||
"editor",
|
"editor",
|
||||||
"javascript",
|
"javascript",
|
||||||
"wysiwyg"
|
"fontawesome"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/NextStepWebs/simplemde-markdown-editor",
|
"main": "src/js/easymde.js",
|
||||||
"main": "./src/js/simplemde.js",
|
"types": "types/easymde.d.ts",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"company": "Next Step Webs, Inc.",
|
"author": "Jeroen Akkerman",
|
||||||
"author": {
|
|
||||||
"name": "Wes Cossick",
|
|
||||||
"url": "http://www.WesCossick.com"
|
|
||||||
},
|
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor/issues"
|
"url": "https://github.com/ionaru/easy-markdown-editor/issues"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"codemirror": "*",
|
"codemirror": "^5.43.0",
|
||||||
"codemirror-spell-checker": "*",
|
"codemirror-spell-checker": "1.1.2",
|
||||||
"marked": "*"
|
"marked": "^0.6.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"browserify": "*",
|
"@types/codemirror": "0.0.72",
|
||||||
"debug": "*",
|
"browserify": "^16.2.3",
|
||||||
"eslint": "*",
|
"gulp": "^4.0.0",
|
||||||
"gulp": "*",
|
"gulp-clean-css": "^4.0.0",
|
||||||
"gulp-concat": "*",
|
"gulp-concat": "^2.6.1",
|
||||||
"gulp-debug": "*",
|
"gulp-eslint": "^5.0.0",
|
||||||
"gulp-eslint": "*",
|
"gulp-header": "^2.0.7",
|
||||||
"gulp-header": "*",
|
"gulp-rename": "^1.4.0",
|
||||||
"gulp-jsbeautifier": "*",
|
"gulp-uglify": "^3.0.1",
|
||||||
"gulp-clean-css": "*",
|
"typescript": "^3.3.3",
|
||||||
"gulp-rename": "*",
|
"vinyl-buffer": "^1.0.0",
|
||||||
"gulp-uglify": "*",
|
"vinyl-source-stream": "^2.0.0"
|
||||||
"vinyl-source-stream": "*",
|
|
||||||
"vinyl-buffer": "*"
|
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor"
|
"url": "https://github.com/ionaru/easy-markdown-editor"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"prepare": "gulp",
|
||||||
|
"test:types": "tsc --project types/tsconfig.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
.CodeMirror {
|
.CodeMirror {
|
||||||
|
box-sizing: border-box;
|
||||||
height: auto;
|
height: auto;
|
||||||
min-height: 300px;
|
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font: inherit;
|
font: inherit;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror-scroll {
|
.CodeMirror-scroll {
|
||||||
min-height: 300px
|
cursor: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror-fullscreen {
|
.CodeMirror-fullscreen {
|
||||||
@ -22,15 +23,24 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
height: auto;
|
height: auto;
|
||||||
z-index: 9;
|
z-index: 9;
|
||||||
|
border-right: none !important;
|
||||||
|
border-bottom-right-radius: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror-sided {
|
.CodeMirror-sided {
|
||||||
width: 50% !important;
|
width: 50% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.CodeMirror-placeholder {
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror-focused .CodeMirror-selected {
|
||||||
|
background: #d9d9d9;
|
||||||
|
}
|
||||||
|
|
||||||
.editor-toolbar {
|
.editor-toolbar {
|
||||||
position: relative;
|
position: relative;
|
||||||
opacity: .6;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -59,12 +69,6 @@
|
|||||||
margin-top: 8px
|
margin-top: 8px
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar:hover,
|
|
||||||
.editor-wrapper input.title:focus,
|
|
||||||
.editor-wrapper input.title:hover {
|
|
||||||
opacity: .8
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar.fullscreen {
|
.editor-toolbar.fullscreen {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
@ -115,29 +119,26 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a {
|
.editor-toolbar button {
|
||||||
|
background: transparent;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none!important;
|
text-decoration: none !important;
|
||||||
color: #2c3e50!important;
|
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a.active,
|
.editor-toolbar button.active,
|
||||||
.editor-toolbar a:hover {
|
.editor-toolbar button:hover {
|
||||||
background: #fcfcfc;
|
background: #fcfcfc;
|
||||||
border-color: #95a5a6;
|
border-color: #95a5a6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a:before {
|
|
||||||
line-height: 30px
|
|
||||||
}
|
|
||||||
|
|
||||||
.editor-toolbar i.separator {
|
.editor-toolbar i.separator {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 0;
|
width: 0;
|
||||||
@ -148,7 +149,7 @@
|
|||||||
margin: 0 6px;
|
margin: 0 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-x:after {
|
.editor-toolbar button:after {
|
||||||
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
|
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
|
||||||
font-size: 65%;
|
font-size: 65%;
|
||||||
vertical-align: text-bottom;
|
vertical-align: text-bottom;
|
||||||
@ -156,35 +157,33 @@
|
|||||||
top: 2px;
|
top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-1:after {
|
.editor-toolbar button.heading-1:after {
|
||||||
content: "1";
|
content: "1";
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-2:after {
|
.editor-toolbar button.heading-2:after {
|
||||||
content: "2";
|
content: "2";
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-3:after {
|
.editor-toolbar button.heading-3:after {
|
||||||
content: "3";
|
content: "3";
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-bigger:after {
|
.editor-toolbar button.heading-bigger:after {
|
||||||
content: "▲";
|
content: "▲";
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar a.fa-header-smaller:after {
|
.editor-toolbar button.heading-smaller:after {
|
||||||
content: "▼";
|
content: "▼";
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-toolbar.disabled-for-preview a:not(.no-disable) {
|
.editor-toolbar.disabled-for-preview button:not(.no-disable) {
|
||||||
|
opacity: .6;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
background: #fff;
|
|
||||||
border-color: transparent;
|
|
||||||
text-shadow: inherit;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 700px) {
|
@media only screen and (max-width: 700px) {
|
||||||
.editor-toolbar a.no-mobile {
|
.editor-toolbar i.no-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -241,6 +240,7 @@
|
|||||||
display: none;
|
display: none;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-preview-active-side {
|
.editor-preview-active-side {
|
||||||
@ -251,8 +251,8 @@
|
|||||||
display: block
|
display: block
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-preview>p,
|
.editor-preview > p,
|
||||||
.editor-preview-side>p {
|
.editor-preview-side > p {
|
||||||
margin-top: 0
|
margin-top: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -270,59 +270,52 @@
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-tag {
|
.cm-s-easymde .cm-tag {
|
||||||
color: #63a35c;
|
color: #63a35c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-attribute {
|
.cm-s-easymde .cm-attribute {
|
||||||
color: #795da3;
|
color: #795da3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-string {
|
.cm-s-easymde .cm-string {
|
||||||
color: #183691;
|
color: #183691;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-selected {
|
.cm-s-easymde .cm-header-1 {
|
||||||
background: #d9d9d9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-1 {
|
|
||||||
font-size: 200%;
|
font-size: 200%;
|
||||||
line-height: 200%;
|
line-height: 200%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-2 {
|
.cm-s-easymde .cm-header-2 {
|
||||||
font-size: 160%;
|
font-size: 160%;
|
||||||
line-height: 160%;
|
line-height: 160%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-3 {
|
.cm-s-easymde .cm-header-3 {
|
||||||
font-size: 125%;
|
font-size: 125%;
|
||||||
line-height: 125%;
|
line-height: 125%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-header-4 {
|
.cm-s-easymde .cm-header-4 {
|
||||||
font-size: 110%;
|
font-size: 110%;
|
||||||
line-height: 110%;
|
line-height: 110%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-comment {
|
.cm-s-easymde .cm-comment {
|
||||||
background: rgba(0, 0, 0, .05);
|
background: rgba(0, 0, 0, .05);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-link {
|
.cm-s-easymde .cm-link {
|
||||||
color: #7f8c8d;
|
color: #7f8c8d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-url {
|
.cm-s-easymde .cm-url {
|
||||||
color: #aab2b3;
|
color: #aab2b3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-code .cm-strikethrough {
|
.cm-s-easymde .cm-quote {
|
||||||
text-decoration: line-through;
|
color: #7f8c8d;
|
||||||
}
|
font-style: italic;
|
||||||
|
|
||||||
.CodeMirror .CodeMirror-placeholder {
|
|
||||||
opacity: .5;
|
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||||
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||||
|
|
||||||
var CodeMirror = require("codemirror");
|
var CodeMirror = require('codemirror');
|
||||||
|
|
||||||
CodeMirror.commands.tabAndIndentMarkdownList = function (cm) {
|
CodeMirror.commands.tabAndIndentMarkdownList = function (cm) {
|
||||||
var ranges = cm.listSelections();
|
var ranges = cm.listSelections();
|
||||||
@ -10,15 +10,15 @@ CodeMirror.commands.tabAndIndentMarkdownList = function (cm) {
|
|||||||
var inList = eolState.list !== false;
|
var inList = eolState.list !== false;
|
||||||
|
|
||||||
if (inList) {
|
if (inList) {
|
||||||
cm.execCommand("indentMore");
|
cm.execCommand('indentMore');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cm.options.indentWithTabs) {
|
if (cm.options.indentWithTabs) {
|
||||||
cm.execCommand("insertTab");
|
cm.execCommand('insertTab');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
var spaces = Array(cm.options.tabSize + 1).join(" ");
|
var spaces = Array(cm.options.tabSize + 1).join(' ');
|
||||||
cm.replaceSelection(spaces);
|
cm.replaceSelection(spaces);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -30,15 +30,15 @@ CodeMirror.commands.shiftTabAndUnindentMarkdownList = function (cm) {
|
|||||||
var inList = eolState.list !== false;
|
var inList = eolState.list !== false;
|
||||||
|
|
||||||
if (inList) {
|
if (inList) {
|
||||||
cm.execCommand("indentLess");
|
cm.execCommand('indentLess');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cm.options.indentWithTabs) {
|
if (cm.options.indentWithTabs) {
|
||||||
cm.execCommand("insertTab");
|
cm.execCommand('insertTab');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
var spaces = Array(cm.options.tabSize + 1).join(" ");
|
var spaces = Array(cm.options.tabSize + 1).join(' ');
|
||||||
cm.replaceSelection(spaces);
|
cm.replaceSelection(spaces);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
2173
src/js/easymde.js
Normal file
2173
src/js/easymde.js
Normal file
File diff suppressed because it is too large
Load Diff
2028
src/js/simplemde.js
2028
src/js/simplemde.js
File diff suppressed because it is too large
Load Diff
30
types/easymde-test.ts
Normal file
30
types/easymde-test.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
// Create new instance
|
||||||
|
const editor = new EasyMDE({
|
||||||
|
autoDownloadFontAwesome: false,
|
||||||
|
element: document.getElementById('mdEditor')!,
|
||||||
|
hideIcons: ['side-by-side', 'fullscreen'],
|
||||||
|
shortcuts: {
|
||||||
|
drawTable: 'Cmd-Alt-T',
|
||||||
|
toggleFullScreen: null
|
||||||
|
},
|
||||||
|
spellChecker: false,
|
||||||
|
onToggleFullScreen: (full: boolean) => {
|
||||||
|
console.log('FullscreenToggled', full);
|
||||||
|
},
|
||||||
|
theme: 'someOtherTheme',
|
||||||
|
});
|
||||||
|
|
||||||
|
// Editor functions
|
||||||
|
const value = editor.value() as string;
|
||||||
|
editor.value(value.toUpperCase());
|
||||||
|
|
||||||
|
const sbs = editor.isSideBySideActive() as boolean;
|
||||||
|
const fullscreen = editor.isFullscreenActive() as boolean;
|
||||||
|
|
||||||
|
// Access to codemirror object
|
||||||
|
editor.codemirror.setOption('readOnly', true);
|
||||||
|
|
||||||
|
// Static properties
|
||||||
|
EasyMDE.toggleItalic = (editor: EasyMDE) => {
|
||||||
|
console.log('SomeButtonOverride');
|
||||||
|
};
|
162
types/easymde.d.ts
vendored
Normal file
162
types/easymde.d.ts
vendored
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
// This file is based on https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/simplemde/index.d.ts,
|
||||||
|
// which is written by Scalesoft <https://github.com/Scalesoft> and licensed under the MIT license:
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
/// <reference types="codemirror"/>
|
||||||
|
|
||||||
|
declare namespace EasyMDE {
|
||||||
|
interface AutoSaveOptions {
|
||||||
|
enabled?: boolean;
|
||||||
|
delay?: number;
|
||||||
|
uniqueId: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface BlockStyleOptions {
|
||||||
|
bold?: string;
|
||||||
|
code?: string;
|
||||||
|
italic?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface InsertTextOptions {
|
||||||
|
horizontalRule?: ReadonlyArray<string>;
|
||||||
|
image?: ReadonlyArray<string>;
|
||||||
|
link?: ReadonlyArray<string>;
|
||||||
|
table?: ReadonlyArray<string>;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ParsingOptions {
|
||||||
|
allowAtxHeaderWithoutSpace?: boolean;
|
||||||
|
strikethrough?: boolean;
|
||||||
|
underscoresBreakWords?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface RenderingOptions {
|
||||||
|
singleLineBreaks?: boolean;
|
||||||
|
codeSyntaxHighlighting: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Shortcuts {
|
||||||
|
[action: string]: string | undefined | null;
|
||||||
|
|
||||||
|
toggleBlockquote?: string | null;
|
||||||
|
toggleBold?: string | null;
|
||||||
|
cleanBlock?: string | null;
|
||||||
|
toggleHeadingSmaller?: string | null;
|
||||||
|
toggleItalic?: string | null;
|
||||||
|
drawLink?: string | null;
|
||||||
|
toggleUnorderedList?: string | null;
|
||||||
|
togglePreview?: string | null;
|
||||||
|
toggleCodeBlock?: string | null;
|
||||||
|
drawImage?: string | null;
|
||||||
|
toggleOrderedList?: string | null;
|
||||||
|
toggleHeadingBigger?: string | null;
|
||||||
|
toggleSideBySide?: string | null;
|
||||||
|
toggleFullScreen?: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface StatusBarItem {
|
||||||
|
className: string;
|
||||||
|
defaultValue: (element: HTMLElement) => void;
|
||||||
|
onUpdate: (element: HTMLElement) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ToolbarIcon {
|
||||||
|
name: string;
|
||||||
|
action: string | ((editor: EasyMDE) => void);
|
||||||
|
className: string;
|
||||||
|
title: string;
|
||||||
|
noDisable?: boolean;
|
||||||
|
noMobile?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Options {
|
||||||
|
autoDownloadFontAwesome?: boolean;
|
||||||
|
autofocus?: boolean;
|
||||||
|
autosave?: AutoSaveOptions;
|
||||||
|
blockStyles?: BlockStyleOptions;
|
||||||
|
element?: HTMLElement;
|
||||||
|
forceSync?: boolean;
|
||||||
|
hideIcons?: ReadonlyArray<string>;
|
||||||
|
indentWithTabs?: boolean;
|
||||||
|
initialValue?: string;
|
||||||
|
insertTexts?: InsertTextOptions;
|
||||||
|
lineWrapping?: boolean;
|
||||||
|
parsingConfig?: ParsingOptions;
|
||||||
|
placeholder?: string;
|
||||||
|
previewRender?: (markdownPlaintext: string, previewElement: HTMLElement) => string;
|
||||||
|
promptURLs?: boolean;
|
||||||
|
renderingConfig?: RenderingOptions;
|
||||||
|
shortcuts?: Shortcuts;
|
||||||
|
showIcons?: ReadonlyArray<string>;
|
||||||
|
spellChecker?: boolean;
|
||||||
|
status?: boolean | ReadonlyArray<string | StatusBarItem>;
|
||||||
|
styleSelectedText?: boolean;
|
||||||
|
tabSize?: number;
|
||||||
|
toolbar?: boolean | ReadonlyArray<string | ToolbarIcon>;
|
||||||
|
toolbarTips?: boolean;
|
||||||
|
onToggleFullScreen?: (goingIntoFullScreen: boolean) => void;
|
||||||
|
theme?: string;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare class EasyMDE {
|
||||||
|
constructor(options?: EasyMDE.Options);
|
||||||
|
|
||||||
|
value(): string;
|
||||||
|
value(val: string): void;
|
||||||
|
|
||||||
|
codemirror: CodeMirror.Editor;
|
||||||
|
|
||||||
|
toTextArea(): void;
|
||||||
|
|
||||||
|
isPreviewActive(): boolean;
|
||||||
|
|
||||||
|
isSideBySideActive(): boolean;
|
||||||
|
|
||||||
|
isFullscreenActive(): boolean;
|
||||||
|
|
||||||
|
clearAutosavedValue(): void;
|
||||||
|
|
||||||
|
static toggleBold: (editor: EasyMDE) => void;
|
||||||
|
static toggleItalic: (editor: EasyMDE) => void;
|
||||||
|
static toggleStrikethrough: (editor: EasyMDE) => void;
|
||||||
|
static toggleHeadingSmaller: (editor: EasyMDE) => void;
|
||||||
|
static toggleHeadingBigger: (editor: EasyMDE) => void;
|
||||||
|
static toggleHeading1: (editor: EasyMDE) => void;
|
||||||
|
static toggleHeading2: (editor: EasyMDE) => void;
|
||||||
|
static toggleHeading3: (editor: EasyMDE) => void;
|
||||||
|
static toggleCodeBlock: (editor: EasyMDE) => void;
|
||||||
|
static toggleBlockquote: (editor: EasyMDE) => void;
|
||||||
|
static toggleUnorderedList: (editor: EasyMDE) => void;
|
||||||
|
static toggleOrderedList: (editor: EasyMDE) => void;
|
||||||
|
static cleanBlock: (editor: EasyMDE) => void;
|
||||||
|
static drawLink: (editor: EasyMDE) => void;
|
||||||
|
static drawImage: (editor: EasyMDE) => void;
|
||||||
|
static drawTable: (editor: EasyMDE) => void;
|
||||||
|
static drawHorizontalRule: (editor: EasyMDE) => void;
|
||||||
|
static togglePreview: (editor: EasyMDE) => void;
|
||||||
|
static toggleSideBySide: (editor: EasyMDE) => void;
|
||||||
|
static toggleFullScreen: (editor: EasyMDE) => void;
|
||||||
|
static undo: (editor: EasyMDE) => void;
|
||||||
|
static redo: (editor: EasyMDE) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export as namespace EasyMDE;
|
||||||
|
export = EasyMDE;
|
8
types/tsconfig.json
Normal file
8
types/tsconfig.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es3",
|
||||||
|
"strict": true,
|
||||||
|
"noImplicitReturns": true,
|
||||||
|
"noEmit": true
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user