showdown/dist
Estevao Soares dos Santos 3db9200d2c refactor(subParsers): change name and directory of subparsers
BREAKING CHANGE: makeHtml subparsers names changed, by prepending 'makehtml.' to them.
Example: 'anchors', subparser is now named 'makehtml.anchors'.

Event names were also changed to reflect this.
Example: 'anchors.before' is now named 'makehtml.anchors.before'.

**To migrate:**

If you have a listener extension, replace the old event name with the new one. Example:

Replace this

```js
showdown.extension('myext', function() {
  return [{
    type: 'listener',
    listeners: {
      'anchors.before': function (event, text, converter, options, globals) {
        //... some code
        return text;
      }
  }];
});
```

with this
```js
showdown.extension('myext', function() {
  return [{
    type: 'listener',
    listeners: {
      'makehtml.anchors.before': function (event, text, converter, options, globals) {
        //... some code
        return text;
      }
  }];
});
```
2017-12-16 18:25:44 +00:00
..
showdown.js refactor(subParsers): change name and directory of subparsers 2017-12-16 18:25:44 +00:00
showdown.js.map refactor(subParsers): change name and directory of subparsers 2017-12-16 18:25:44 +00:00
showdown.min.js refactor(subParsers): change name and directory of subparsers 2017-12-16 18:25:44 +00:00
showdown.min.js.map refactor(subParsers): change name and directory of subparsers 2017-12-16 18:25:44 +00:00