diff --git a/mkdocs/api.md b/mkdocs/api.md index 561d32a..0157ced 100644 --- a/mkdocs/api.md +++ b/mkdocs/api.md @@ -351,7 +351,7 @@ from pandoc.types import * >>> config # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE {'auto': True, 'path': ..., - 'version': '3.2', + 'version': '3.2.1', 'pandoc_types_version': '1.23.1'} ``` To avoid this, call `pandoc.configure(...)` yourself beforehand. @@ -366,7 +366,7 @@ from pandoc.types import * >>> pandoc.configure(read=True) # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE {'auto': False, 'path': ..., - 'version': '3.2', + 'version': '3.2.1', 'pandoc_types_version': '1.23.1'} ``` diff --git a/mkdocs/api.md.template b/mkdocs/api.md.template index cd537ae..fcdce15 100644 --- a/mkdocs/api.md.template +++ b/mkdocs/api.md.template @@ -351,7 +351,7 @@ from pandoc.types import * >>> config # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE {'auto': True, 'path': ..., - 'version': '3.2', + 'version': '3.2.1', 'pandoc_types_version': '1.23.1'} ``` To avoid this, call `pandoc.configure(...)` yourself beforehand. @@ -366,7 +366,7 @@ from pandoc.types import * >>> pandoc.configure(read=True) # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE {'auto': False, 'path': ..., - 'version': '3.2', + 'version': '3.2.1', 'pandoc_types_version': '1.23.1'} ``` diff --git a/mkdocs/configuration.md b/mkdocs/configuration.md index a8e2dd7..f53f198 100644 --- a/mkdocs/configuration.md +++ b/mkdocs/configuration.md @@ -82,7 +82,7 @@ but returns a dictionary whose keys are `auto`, `path`, >>> pandoc.configure(read=True) # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE {'auto': True, 'path': ..., - 'version': '3.2', + 'version': '3.2.1', 'pandoc_types_version': '1.23.1'} ``` diff --git a/mkdocs/examples.md b/mkdocs/examples.md index 0f01823..f3aabaa 100644 --- a/mkdocs/examples.md +++ b/mkdocs/examples.md @@ -191,13 +191,15 @@ $$f(z) = \frac{1}{i2\pi} \int \frac{f(w)}{w-z}\, dw$$ ``` pycon >>> doc = pandoc.read(markdown) >>> print(pandoc.write(doc, format="latex")) # doctest: +NORMALIZE_WHITESPACE -\leavevmode\vadjust pre{\hypertarget{cauchy-formula}{}}% +\phantomsection\label{cauchy-formula} \[f(z) = \frac{1}{i2\pi} \int \frac{f(w)}{w-z}\, dw\] >>> theoremize(doc) >>> print(pandoc.write(doc, format="latex")) # doctest: +NORMALIZE_WHITESPACE -\hypertarget{cauchy-formula}{} +\phantomsection\label{cauchy-formula} \begin{theorem}\label{cauchy-formula} + \[f(z) = \frac{1}{i2\pi} \int \frac{f(w)}{w-z}\, dw\] + \end{theorem} ``` diff --git a/mkdocs/index.md b/mkdocs/index.md index 8f8eb58..ad64e6e 100644 --- a/mkdocs/index.md +++ b/mkdocs/index.md @@ -41,7 +41,7 @@ Hello Python! !!! warning This documentation is dedicated to the [latest version of the project available on github](https://github.com/boisgera/pandoc). - It is automatically tested with Python 3.12.4 against pandoc 3.2. + It is automatically tested with Python 3.12.4 against pandoc 3.2.1. At the moment I am writing this, [the latest release of pandoc for conda](https://anaconda.org/conda-forge/pandoc) - is pandoc 3.2. \ No newline at end of file + is pandoc 3.2.1. \ No newline at end of file