File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 7
7
On the fly conversion of Python docstrings to markdown
8
8
9
9
- Python 3.6+
10
- - currently can recognise reStructuredText and convert multiple of its features to Markdown
11
- - in the future will be able to convert Google docstrings too
10
+ - can recognise reStructuredText and convert multiple of its features to Markdown
11
+ - since v0.13 includes initial support for Google-formatted docstrings
12
12
13
13
### Installation
14
14
15
15
``` bash
16
16
pip install docstring-to-markdown
17
17
```
18
18
19
-
20
19
### Example
21
20
22
21
Convert reStructuredText:
Original file line number Diff line number Diff line change 1
1
from .google import google_to_markdown , looks_like_google
2
2
from .rst import looks_like_rst , rst_to_markdown
3
3
4
- __version__ = "0.12 "
4
+ __version__ = "0.13 "
5
5
6
6
7
7
class UnknownFormatError (Exception ):
You can’t perform that action at this time.
0 commit comments