Browse Source

6.0.2 released

pull/251/head 6.0.2
Vitaly Puzrin 9 years ago
parent
commit
4998b813fc
  1. 6
      CHANGELOG.md
  2. 17
      dist/markdown-it.js
  3. 8
      dist/markdown-it.min.js
  4. 2
      package.json

6
CHANGELOG.md

@ -1,3 +1,9 @@
6.0.2 / 2016-05-16
------------------
- Fix: should not escape twice content of image alt attribute, #246.
6.0.1 / 2016-04-02
------------------

17
dist/markdown-it.js

@ -1,4 +1,4 @@
/*! markdown-it 6.0.1 https://github.com//markdown-it/markdown-it @license MIT */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.markdownit = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
/*! markdown-it 6.0.2 https://github.com//markdown-it/markdown-it @license MIT */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.markdownit = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
// HTML5 entities map: { name -> utf16string }
//
'use strict';
@ -1974,12 +1974,11 @@ Renderer.prototype.renderInline = function (tokens, options, env) {
* instead of simple escaping.
**/
Renderer.prototype.renderInlineAsText = function (tokens, options, env) {
var result = '',
rules = this.rules;
var result = '';
for (var i = 0, len = tokens.length; i < len; i++) {
if (tokens[i].type === 'text') {
result += rules.text(tokens, i, options, env, this);
result += tokens[i].content;
} else if (tokens[i].type === 'image') {
result += this.renderInlineAsText(tokens[i].children, options, env);
}
@ -6287,7 +6286,7 @@ function isRegExp(obj) { return _class(obj) === '[object RegExp]'; }
function isFunction(obj) { return _class(obj) === '[object Function]'; }
function escapeRE (str) { return str.replace(/[.?*+^$[\]\\(){}|-]/g, '\\$&'); }
function escapeRE(str) { return str.replace(/[.?*+^$[\]\\(){}|-]/g, '\\$&'); }
////////////////////////////////////////////////////////////////////////////////
@ -6495,7 +6494,7 @@ function compile(self) {
// Build schema condition
//
var slist = Object.keys(self.__compiled__)
.filter(function(name) {
.filter(function (name) {
// Filter disabled & fake schemas
return name.length > 0 && self.__compiled__[name];
})
@ -6779,7 +6778,7 @@ LinkifyIt.prototype.testSchemaAt = function testSchemaAt(text, schema, pos) {
* LinkifyIt#match(text) -> Array|null
*
* Returns array of found link descriptions or `null` on fail. We strongly
* to use [[LinkifyIt#test]] first, for best speed.
* recommend to use [[LinkifyIt#test]] first, for best speed.
*
* ##### Result match description
*
@ -6846,7 +6845,7 @@ LinkifyIt.prototype.tlds = function tlds(list, keepOld) {
this.__tlds__ = this.__tlds__.concat(list)
.sort()
.filter(function(el, idx, arr) {
.filter(function (el, idx, arr) {
return el !== arr[idx - 1];
})
.reverse();
@ -7023,7 +7022,7 @@ exports.tpl_host_fuzzy_test =
exports.tpl_email_fuzzy =
'(^|>|' + src_ZCc + ')(' + src_email_name + '@' + tpl_host_fuzzy_strict + ')';
'(^|>|\\(|' + src_ZCc + ')(' + src_email_name + '@' + tpl_host_fuzzy_strict + ')';
exports.tpl_link_fuzzy =
// Fuzzy link can't be prepended with .:/\- and non punctuation.

8
dist/markdown-it.min.js

File diff suppressed because one or more lines are too long

2
package.json

@ -1,6 +1,6 @@
{
"name": "markdown-it",
"version": "6.0.1",
"version": "6.0.2",
"description": "Markdown-it - modern pluggable markdown parser.",
"keywords": [
"markdown",

Loading…
Cancel
Save