Skip to content

Commit

Permalink
💚 Disable the tests of some code snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
boisgera committed Jul 29, 2024
1 parent bae8fdd commit 5392603
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mkdocs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ before you do anything else with the library:

```python
import pandoc
pandoc.configure(...)
pandoc.configure(...) # doctest: +SKIP
```

If you do this, the implicit configuration does not take place;
Expand All @@ -46,7 +46,7 @@ If instead you want to specify manually the pandoc executable,
use the `path` argument, for example:

```python
pandoc.configure(path='/usr/bin/pandoc')
pandoc.configure(path='/usr/bin/pandoc') # doctest: +SKIP
```

Some features[^features] of the Python `pandoc` library
Expand All @@ -55,7 +55,7 @@ we still need to know what version of pandoc you target,
so specify for example:

```python
pandoc.configure(version=' 2.18')
pandoc.configure(version='2.18') # doctest: +SKIP
```

[^features]: typically conversion between json and Python object representations
Expand All @@ -71,7 +71,7 @@ Accordingly, you may configure `pandoc` with the
`pandoc_types_version` argument:

```python
pandoc.configure(pandoc_types_version='1.22.2')
pandoc.configure(pandoc_types_version='1.22.2') # doctest: +SKIP
```

[pt]: https://hackage.haskell.org/package/pandoc-types
Expand Down

0 comments on commit 5392603

Please sign in to comment.