Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: remarkjs/remark-gfm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.0
Choose a base ref
...
head repository: remarkjs/remark-gfm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.0.1
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Oct 31, 2021

  1. Update dev-dependencies

    wooorm committed Oct 31, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    c17866c View commit details

Commits on Nov 3, 2021

  1. Add improved docs

    Closes GH-25.
    
    Reviewed-by: Merlijn Vos <merlijn@soverin.net>
    Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com>
    Reviewed-by: with-heart <with.heart@pm.me>
    Reviewed-by: Remco Haszing <remcohaszing@gmail.com>
    wooorm authored Nov 3, 2021

    Verified

    This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    97437dc View commit details
  2. 3.0.1

    wooorm committed Nov 3, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    0af02a8 View commit details
Showing with 258 additions and 64 deletions.
  1. +1 −1 index.js
  2. +2 −2 package.json
  3. +253 −59 readme.md
  4. +2 −2 test/fixtures/autolink-literal/output.md
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import {gfm} from 'micromark-extension-gfm'
import {gfmFromMarkdown, gfmToMarkdown} from 'mdast-util-gfm'

/**
* Plugin to support GitHub Flavored Markdown (GFM).
* Plugin to support GFM (autolink literals, footnotes, strikethrough, tables, tasklists).
*
* @type {import('unified').Plugin<[Options?]|void[], Root>}
*/
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remark-gfm",
"version": "3.0.0",
"version": "3.0.1",
"description": "remark plugin to support GFM (autolink literals, footnotes, strikethrough, tables, tasklists)",
"license": "MIT",
"keywords": [
@@ -56,7 +56,7 @@
"to-vfile": "^7.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"xo": "^0.45.0"
"xo": "^0.46.0"
},
"scripts": {
"build": "rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
Loading