-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathextra-migrating-sphinx.qmd
145 lines (93 loc) · 2.67 KB
/
extra-migrating-sphinx.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
title: Migrating from Sphinx
jupyter:
kernelspec:
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Oftentimes, developers want to migrate from Sphinx to quartodoc without making lots of changes to existing docstrings.
Suppose you have rst codeblocks in your docstring that you'd like to render:
```{python}
class MyClass:
"""This is a great class
Examples
--------
..code:: python
example_code = "here"
See Also
--------
:func:`float`
"""
def __init__(self): ...
```
Note that the block above has rst directives for `.. code::`, and an rst interlink
`` :func:`float` ``.
## Manually changing rst to markdown
A quick way to migrate to quartodoc, would be to change the rst directives (e.g. `.. code:: python`) to markdown:
```python
class MyClass:
"""This is a great class
Examples
========
```python
example_code = "here"
```
See Also
[](:func:`float`)
"""
```
Note two important changes in the docstring above:
1. The example code now uses a markdown code block (starting with ```` ``` ````).
You can also write the code in [docstring syntax or quarto blocks](./docstring-examples.qmd#examples-using-code-blocks).
2. The See Also section is now formatted as markdown for the [interlinks filter](./interlinks.qmd).
## Custom rendering of rst directives
While changing all the restructured text in your docstrings to markdown gets the job done,
it is often easier to use some code to make the changes first, and then edit the docstrings
later.
In order to convert your restructured text to markdown, you can define a custom renderer.
### Using conversion functions
For example:
```{python}
from quartodoc.experimental.sphinx_migration import (
convert_code_rst_to_md,
convert_rst_link_to_md
)
print(
convert_code_rst_to_md("""
..code::
example_code = "here"
""")
)
```
```{python}
print(
convert_rst_link_to_md(":func:`some_object`")
)
```
### Extending a Renderer
```{python}
import re
from quartodoc import MdRenderer, preview
from plum import dispatch
from griffe.docstrings import dataclasses as ds
from quartodoc import ast as qast
class MyRenderer(MdRenderer):
style = "my_renderer3"
@dispatch
def render(self, el: qast.ExampleText):
new_value = convert_code_rst_to_md(el.value)
return new_value
@dispatch
def render(self, el: qast.DocstringSectionSeeAlso):
return convert_rst_link_to_md(el.value)
```
### Testing docstrings
```{python}
from quartodoc.interactive import get_object_interactive
mod = get_object_interactive(MyClass)
obj = mod.members["MyClass"]
print(
MyRenderer().render(obj)
)
```