Skip to content

Tags: brainkim/marked

Tags

v3.0.7

Toggle v3.0.7's commit message
chore(release): 3.0.7 [skip ci]

## [3.0.7](markedjs/marked@v3.0.6...v3.0.7) (2021-10-07)

### Bug Fixes

* use named exports only for ESM build ([b0caae0](markedjs@b0caae0))

v3.0.6

Toggle v3.0.6's commit message
chore(release): 3.0.6 [skip ci]

## [3.0.6](markedjs/marked@v3.0.5...v3.0.6) (2021-10-06)

### Bug Fixes

* Remove esm interop ([markedjs#2225](markedjs#2225)) ([4bc9121](markedjs@4bc9121))

v3.0.5

Toggle v3.0.5's commit message
chore(release): 3.0.5 [skip ci]

## [3.0.5](markedjs/marked@v3.0.4...v3.0.5) (2021-10-06)

### Bug Fixes

* Expose named exports for ESM build ([markedjs#2223](markedjs#2223)) ([3959651](markedjs@3959651))

v3.0.4

Toggle v3.0.4's commit message
chore(release): 3.0.4 [skip ci]

## [3.0.4](markedjs/marked@v3.0.3...v3.0.4) (2021-09-14)

### Bug Fixes

* fix detection of orphaned emStrong delimiters ([markedjs#2206](markedjs#2206)) ([8c00ed3](markedjs@8c00ed3))

v3.0.3

Toggle v3.0.3's commit message
chore(release): 3.0.3 [skip ci]

## [3.0.3](markedjs/marked@v3.0.2...v3.0.3) (2021-09-08)

### Bug Fixes

* fix space at end of table line ([markedjs#2201](markedjs#2201)) ([910f0f0](markedjs@910f0f0))

v3.0.2

Toggle v3.0.2's commit message
chore(release): 3.0.2 [skip ci]

## [3.0.2](markedjs/marked@v3.0.1...v3.0.2) (2021-08-25)

### Bug Fixes

* stop table at lines with only whitespace ([markedjs#2188](markedjs#2188)) ([21268ab](markedjs@21268ab))

v3.0.1

Toggle v3.0.1's commit message
chore(release): 3.0.1 [skip ci]

## [3.0.1](markedjs/marked@v3.0.0...v3.0.1) (2021-08-23)

### Bug Fixes

* fix gfm urls after link ([markedjs#2186](markedjs#2186)) ([e03b5c1](markedjs@e03b5c1))

v3.0.0

Toggle v3.0.0's commit message
chore(release): 3.0.0 [skip ci]

# [3.0.0](markedjs/marked@v2.1.3...v3.0.0) (2021-08-16)

### Bug Fixes

* Add module field to package.json ([markedjs#2143](markedjs#2143)) ([edc2e6d](markedjs@edc2e6d))
* drop node 10 support ([markedjs#2157](markedjs#2157)) ([433b16f](markedjs@433b16f))
* Full Commonmark compliance for Lists ([markedjs#2112](markedjs#2112)) ([eb33d3b](markedjs@eb33d3b))
* Refactor table tokens ([markedjs#2166](markedjs#2166)) ([bc400ac](markedjs@bc400ac))

### BREAKING CHANGES

* - `table` tokens `header` property changed to contain an array of objects for each header cell with `text` and `tokens` properties.
- `table` tokens `cells` property changed to `rows` and is an array of rows where each row contains an array of objects for each cell with `text` and `tokens` properties.

v2:

```json
{
  "type": "table",
  "align": [null, null],
  "raw": "| a | b |\n|---|---|\n| 1 | 2 |\n",
  "header": ["a", "b"],
  "cells": [["1", "2"]],
  "tokens": {
    "header": [
      [{ "type": "text", "raw": "a", "text": "a" }],
      [{ "type": "text", "raw": "b", "text": "b" }]
    ],
    "cells": [[
      [{ "type": "text", "raw": "1", "text": "1" }],
      [{ "type": "text", "raw": "2", "text": "2" }]
    ]]
  }
}
```

v3:

```json
{
  "type": "table",
  "align": [null, null],
  "raw": "| a | b |\n|---|---|\n| 1 | 2 |\n",
  "header": [
    {
      "text": "a",
      "tokens": [{ "type": "text", "raw": "a", "text": "a" }]
    },
    {
      "text": "b",
      "tokens": [{ "type": "text", "raw": "b", "text": "b" }]
    }
  ],
  "rows": [
    {
      "text": "1",
      "tokens": [{ "type": "text", "raw": "1", "text": "1" }]
    },
    {
      "text": "2",
      "tokens": [{ "type": "text", "raw": "2", "text": "2" }]
    }
  ]
}
```
* Add module field to package.json
* drop node 10 support

v2.1.3

Toggle v2.1.3's commit message
chore(release): 2.1.3 [skip ci]

## [2.1.3](markedjs/marked@v2.1.2...v2.1.3) (2021-06-25)

### Bug Fixes

* update commonmark spec to v0.30 ([markedjs#2113](markedjs#2113)) ([62d6a0e](markedjs@62d6a0e))

v2.1.2

Toggle v2.1.2's commit message
chore(release): 2.1.2 [skip ci]

## [2.1.2](markedjs/marked@v2.1.1...v2.1.2) (2021-06-22)

### Bug Fixes

* add Node.js 10 to CI and loosen `engines` field ([markedjs#2119](markedjs#2119)) ([8659353](markedjs@8659353))