From b82373adddc9867da3177f60342fff961dd2ccf4 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Wed, 20 Jan 2021 11:45:11 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.13.2=20(#297)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ myst_parser/__init__.py | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc29c2ab..b3e31888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,41 @@ # Changelog +## 0.13.2 - 2021-01-20 + +✨ NEW: Add `html_admonition` extension + +: By adding `"html_admonition"` to `myst_enable_extensions`, you can enable parsing of `
` HTML blocks to sphinx admonitions. +: This is helpful when you care about viewing the "source" Markdown, such as in Jupyter Notebooks. +: For example: + ```html +
+

This is the **title**

+ This is the *content* +
+ ``` +: See [the optional syntax guide](docs/using/syntax-optional.md) for further information. + +👌 IMPROVE: Footnotes + +: If the label is an integer, then it will always use this integer for the rendered label (i.e. they are manually numbered). +: Add `myst_footnote_transition` configuration, to turn on/off transition line. +: Add `footnotes` class to transition `
` in HTML. +: See [the syntax guide](docs/using/syntax.md) for further information. + +👌 IMPROVE: `substitution` extension logic + +: Parse inline substitutions without block rules, unless the substitution starts with a directive. + +🐛 FIX: Render front-matter as `field_list` + +: To improve use by sphinx extensions). + +👌 IMPROVE: Code quality + +: Add isort and mypy type checking to code base. + +(thanks to contributors @akhmerov, @tfiers) + ## 0.13.1 - 2020-12-31 👌 Directives can now be used for inline substitutions, e.g. diff --git a/myst_parser/__init__.py b/myst_parser/__init__.py index 24aa41b0..7ce7a1c3 100644 --- a/myst_parser/__init__.py +++ b/myst_parser/__init__.py @@ -1,6 +1,6 @@ from typing import TYPE_CHECKING -__version__ = "0.13.1" +__version__ = "0.13.2" if TYPE_CHECKING: