Я пытаюсь преобразовать мои строки документа в стиле Google в документацию HTML.
Как это:
out = docutils.publish_string(rst, writer_name='html', settings_overrides=rst_opts)
Я передаю строку в Google DOC из функции DOC.
"""
Uploads a compiled model to a HIL device.
Args:
param_a (str): blabla.
param_b (bool): ``True`` blabla.
param_C (bool): blbablalbalbl ``True`` .
.. note::
.Lorem Ipsum is simply dummy text of the printing and typesetting industry
Returns:
``True`` Lorem Ipsum is simply dummy text of the printing and typesetting industry. ``False``.
Availability:
* Lorem Ipsum is simply dummy text of the printing and typesetting industry
Example::
# loading model
status = load_model(file = r"./examples/models/3phaseRectifier Target files/3phaseRectifier.cpd")
if status:
# if loading went successfully we can continue
...
"""
и я получаю возвращаемое значение HTML, все хорошо отформатированы, кроме параметров
пример плохого форматирования параметров .
Как видите, параметры находятся не один под другим, а склеены между собой.
Но если я вставлю пустую строку между параметрами, она будет сгенерирована правильно см. Здесь
Если кто-то знает, как разделить параметры, это мне очень поможет. спасибо.