From 9e286f5f4d595fd59b8dbfcea978692ae259d0cf Mon Sep 17 00:00:00 2001 From: jstilley Date: Fri, 31 Jan 2025 11:24:52 -0800 Subject: [PATCH] reunification --- doc/.static/dochelpers.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/.static/dochelpers.py b/doc/.static/dochelpers.py index ba6a72968..b74640052 100644 --- a/doc/.static/dochelpers.py +++ b/doc/.static/dochelpers.py @@ -146,15 +146,15 @@ def generateParamTable(klass, fwParams, app=None): defs[plugin] = pDefs headerContent = """ - .. container:: break_before ssp-landscape - .. list-table:: {} Parameters from {{}} - :class: ssp-tiny - :widths: 30 40 30 - :header-rows: 1 - - * - Name - - Description - - Units +.. container:: break_before ssp-landscape + .. list-table:: {} Parameters from {{}} + :class: ssp-tiny + :widths: 30 40 30 + :header-rows: 1 + + * - Name + - Description + - Units """.format( klass.__name__ ) @@ -166,9 +166,9 @@ def generateParamTable(klass, fwParams, app=None): content.append(f".. _{srcName}-{klass.__name__}-param-table:") pluginContent = headerContent.format(srcName) for pd in pdefs: - pluginContent += f""" * - {pd.name} - - {escapeSpecialCharacters(str(pd.description))} - - {escapeSpecialCharacters(pd.units)} + pluginContent += f""" * - {pd.name} + - {escapeSpecialCharacters(str(pd.description))} + - {escapeSpecialCharacters(pd.units)} """ content.append(pluginContent + "\n")