From 3c29b0f658c0918f3b6811799d5ed82f4585835b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Lindberg?= Date: Sun, 19 Jul 2026 07:30:33 +0200 Subject: [PATCH 1/3] docs: fix 'mistletoes's' typo in performance.md --- docs/performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/performance.md b/docs/performance.md index d75c2159..505deca6 100644 --- a/docs/performance.md +++ b/docs/performance.md @@ -25,4 +25,4 @@ As you can see, `markdown-it-py` doesn't pay with speed for it's flexibility. [^1]: `markdown-it-pyrs` is a Rust implementation of `markdown-it-py`'s parser, in beta development, check it out at: [^2]: `mistune` is not CommonMark compliant, which is what allows for its faster parsing, at the expense of issues, for example, with nested inline parsing. -See [mistletoes's explanation](https://github.com/miyuchina/mistletoe/blob/master/performance.md) for further details. +See [mistletoe's explanation](https://github.com/miyuchina/mistletoe/blob/master/performance.md) for further details. From 36dadab9ae8d9f37bd58a7389af3c5197fc6cb78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Lindberg?= Date: Sun, 19 Jul 2026 07:30:33 +0200 Subject: [PATCH 2/3] docs: use HTTPS for CommonMark spec link in index.md --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index d71458c5..0fdd263d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ > Markdown parser done right. -- {fa}`check,text-success mr-1` Follows the __[CommonMark spec](http://spec.commonmark.org/)__ for baseline parsing +- {fa}`check,text-success mr-1` Follows the __[CommonMark spec](https://spec.commonmark.org/)__ for baseline parsing - {fa}`check,text-success mr-1` Configurable syntax: you can add new rules and even replace existing ones. - {fa}`check,text-success mr-1` Pluggable: Adds syntax extensions to extend the parser (see the [plugin list](md/plugins)) - {fa}`check,text-success mr-1` High speed (see our [benchmarking tests](md/performance)) From aba5a5dfec7ad4d1b59bdf0c6d7cc15e352efffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Lindberg?= Date: Sun, 19 Jul 2026 07:30:34 +0200 Subject: [PATCH 3/3] docs: use HTTPS for CommonMark spec link in using.md --- docs/using.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/using.md b/docs/using.md index 507f49c1..03357454 100644 --- a/docs/using.md +++ b/docs/using.md @@ -52,7 +52,7 @@ dictating the syntax rules and additional options for the parser and renderer. You can define this configuration *via* directly supplying a dictionary or a preset name: - `zero`: This configures the minimum components to parse text (i.e. just paragraphs and text) -- `commonmark` (default): This configures the parser to strictly comply with the [CommonMark specification](http://spec.commonmark.org/). +- `commonmark` (default): This configures the parser to strictly comply with the [CommonMark specification](https://spec.commonmark.org/). - `js-default`: This is the default in the JavaScript version. Compared to `commonmark`, it disables HTML parsing and enables the table and strikethrough components. - `gfm-like`: This configures the parser to approximately comply with the [GitHub Flavored Markdown specification](https://github.github.com/gfm/).