Version 2.2.1 wasn't yanked

pull/76/head
Jeroen Akkerman il y a 5 ans
Parent 24d6cfb159
révision 6d5716f7c3

@ -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.

@ -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>
Chargement…
Annuler
Enregistrer