diff --git a/LICENSE b/LICENSE index c6a0b942..ee07da7b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015-2017 David Anson +Copyright (c) 2015-2018 David Anson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 14591e52..4d9cd1c9 100644 --- a/README.md +++ b/README.md @@ -654,6 +654,8 @@ For ideas how to integrate `markdownlint` into your workflow, refer to the follo * 0.6.2 - Improve MD013/MD027/MD034/MD037/MD038/MD041/MD044, update dependencies. * 0.6.3 - Improve highlighting for MD020. * 0.6.4 - Improve MD029/MD042, update dependencies. +* 0.7.0 - `resultVersion` defaults to 2 (breaking change), add MD045, improve MD029, + remove trimLeft/trimRight, split rules, refactor, update dependencies. [npm-image]: https://img.shields.io/npm/v/markdownlint.svg [npm-url]: https://www.npmjs.com/package/markdownlint diff --git a/demo/default.htm b/demo/default.htm index 114073aa..f9b6bdfb 100644 --- a/demo/default.htm +++ b/demo/default.htm @@ -28,7 +28,7 @@
- +
diff --git a/demo/default.js b/demo/default.js index 93304cdb..3b324bd7 100644 --- a/demo/default.js +++ b/demo/default.js @@ -53,7 +53,9 @@ violations.innerHTML = results.content.map(function mapResult(result) { var ruleName = result.ruleNames[0]; var ruleRef = rulesMd + "#" + ruleName.toLowerCase() + "---" + - result.ruleDescription.toLowerCase().replace(/ /g, "-"); + result.ruleDescription.toLowerCase() + .replace(/ /g, "-") + .replace(/[()]/g, ""); return "" + result.lineNumber + " - " + ruleName + " " + result.ruleDescription + diff --git a/demo/offline.appcache b/demo/offline.appcache index e3109f0e..e046cd62 100644 --- a/demo/offline.appcache +++ b/demo/offline.appcache @@ -1,5 +1,5 @@ CACHE MANIFEST -# 2017-11-22 +# 2018-01-22 default.css default.htm default.js diff --git a/package.json b/package.json index f28728bf..0b6fa20c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "markdownlint", - "version": "0.6.4", + "version": "0.7.0", "description": "A Node.js style checker and lint tool for Markdown/CommonMark files.", "main": "lib/markdownlint.js", "author": "David Anson (https://dlaa.me/)",