2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-22 17:34:37 -06:00

Version 2.2.1 wasn't yanked

This commit is contained in:
Jeroen Akkerman 2019-03-08 18:08:25 +01:00
parent 24d6cfb159
commit 6d5716f7c3
2 changed files with 30 additions and 1 deletions

View File

@ -58,7 +58,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Automatic publish only publishing tags.
## [2.2.1] - 2019-06-29 [YANKED]
## [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.

29
test/test.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EASYMDE TEST</title>
<link rel="stylesheet" href="../dist/easymde.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<script src="../dist/easymde.min.js"></script>
</head>
<body>
<textarea id="my-text-area"></textarea>
<script>
var mde = new EasyMDE({
element: document.getElementById('my-text-area'),
autoDownloadFontAwesome: false,
styleSelectedText: false,
spellChecker: false,
toolbar: [{
name: "bold",
action: EasyMDE.toggleBold,
className: "fa fa-eye some-class fa-moo no-mobile",
title: "Bold",
// noDisable: true,
}],
});
</script>
</body>
</html>