Comparing version 7.2.0 to 7.2.1
# Changelog | ||
## v7.2.1 | ||
- --ignore-tags Not work properly in Markdown files with HTML #176 | ||
## v7.2.0 | ||
@@ -4,0 +7,0 @@ - Update deps in package.json |
@@ -12,3 +12,3 @@ 'use strict'; | ||
const MarkdownIt = require('markdown-it'); | ||
const md = new MarkdownIt(); | ||
const md = new MarkdownIt({ html: true }); | ||
@@ -15,0 +15,0 @@ const eyo = require('./plugins/eyo'); |
@@ -13,3 +13,3 @@ { | ||
"description": "Search tool typos in the text, files and websites", | ||
"version": "7.2.0", | ||
"version": "7.2.1", | ||
"license": "MIT", | ||
@@ -55,4 +55,4 @@ "homepage": "https://github.com/hcodes/yaspeller", | ||
"chai": "^4.3.4", | ||
"eslint": "^8.0.0", | ||
"mocha": "^9.1.2", | ||
"eslint": "^8.1.0", | ||
"mocha": "^9.1.3", | ||
"nyc": "^15.1.0", | ||
@@ -59,0 +59,0 @@ "sinon": "^11.1.2" |
@@ -6,3 +6,2 @@ yaspeller | ||
[![Coverage Status](https://img.shields.io/coveralls/hcodes/yaspeller.svg)](https://coveralls.io/r/hcodes/yaspeller) | ||
[![Dependency Status](https://img.shields.io/david/hcodes/yaspeller.svg)](https://david-dm.org/hcodes/yaspeller) | ||
@@ -258,4 +257,4 @@ <img align="right" width="200" src="https://raw.githubusercontent.com/hcodes/yaspeller/master/images/logo.png" /> | ||
/* yaspeller ignore:start */ | ||
var reUpper = /A-Z/, | ||
reLower = /a-z/; | ||
const reUpper = /A-Z/; | ||
const reLower = /a-z/; | ||
/* yaspeller ignore:end */ | ||
@@ -273,4 +272,4 @@ ``` | ||
```js | ||
var gulp = require('gulp'), | ||
run = require('gulp-run'); // npm install gulp-run --save-dev | ||
const gulp = require('gulp'); | ||
const run = require('gulp-run'); // npm install gulp-run --save-dev | ||
@@ -307,4 +306,5 @@ gulp.task('yaspeller', function (cb) { | ||
- [Yaspeller for CI](https://github.com/ai/yaspeller-ci) | ||
- [Github Action for Yaspeller](https://github.com/heytitle/github-action-yaspeller) | ||
## [License](./LICENSE.md) | ||
MIT License |
@@ -248,4 +248,4 @@ yaspeller | ||
/* yaspeller ignore:start */ | ||
var reUpper = /А-ЯЁ/, | ||
reLower = /а-яё/; | ||
const reUpper = /А-ЯЁ/; | ||
const reLower = /а-яё/; | ||
/* yaspeller ignore:end */ | ||
@@ -263,4 +263,4 @@ ``` | ||
```js | ||
var gulp = require('gulp'), | ||
run = require('gulp-run'); // npm install gulp-run --save-dev | ||
const gulp = require('gulp'); | ||
const run = require('gulp-run'); // npm install gulp-run --save-dev | ||
@@ -297,4 +297,5 @@ gulp.task('yaspeller', function (cb) { | ||
- [Yaspeller для CI](https://github.com/ai/yaspeller-ci) | ||
- [Github Action for Yaspeller](https://github.com/heytitle/github-action-yaspeller) | ||
## [Лицензия](./LICENSE.md) | ||
MIT License |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
96064