Is your feature request related to a problem? Please describe.
Black currently does not format Doctests in Docstrings. This issues was reported in #745 which was superseeded by #144.
As the latter was closed though, nothing was done about the Doctests.
Describe the solution you'd like
I would be keen for black to format Doctest.
For example, given the following Python Doctests code:
>>> XYZ = np.array([0.20654008, 0.12197225, 0.05136952])
>>> LMS_to_LMS_p_callable = lambda x: x ** 0.43
>>> matrix_XYZ_to_LMS = np.array(
... [[0.4002, 0.7075, -0.0807],
... [-0.2280, 1.1500, 0.0612],
... [0.0000, 0.0000, 0.9184]])
>>> matrix_LMS_p_to_Iab = np.array(
... [[0.4000, 0.4000, 0.2000],
... [4.4550, -4.8510, 0.3960],
... [0.8056, 0.3572, -1.1628]])
>>> XYZ_to_Iab(
... XYZ, LMS_to_LMS_p_callable, matrix_XYZ_to_LMS, matrix_LMS_p_to_Iab)
black could produce the following output:
>>> XYZ = np.array([0.20654008, 0.12197225, 0.05136952])
>>> LMS_to_LMS_p_callable = lambda x: x**0.43
>>> matrix_XYZ_to_LMS = np.array(
... [
... [0.4002, 0.7075, -0.0807],
... [-0.2280, 1.1500, 0.0612],
... [0.0000, 0.0000, 0.9184],
... ]
... )
>>> matrix_LMS_p_to_Iab = np.array(
... [
... [0.4000, 0.4000, 0.2000],
... [4.4550, -4.8510, 0.3960],
... [0.8056, 0.3572, -1.1628],
... ]
... )
>>> XYZ_to_Iab(
... XYZ, LMS_to_LMS_p_callable, matrix_XYZ_to_LMS, matrix_LMS_p_to_Iab
... )
Describe alternatives you've considered
I'm manually formatting the code.
Additional context
N/A
Is your feature request related to a problem? Please describe.
Black currently does not format Doctests in Docstrings. This issues was reported in #745 which was superseeded by #144.
As the latter was closed though, nothing was done about the Doctests.
Describe the solution you'd like
I would be keen for black to format Doctest.
For example, given the following Python Doctests code:
black could produce the following output:
Describe alternatives you've considered
I'm manually formatting the code.
Additional context
N/A