This commit is contained in:
CaCO3
2024-02-11 18:14:15 +01:00
committed by CaCO3
parent b2d8c60bb1
commit 246f9cfc31

View File

@@ -55,7 +55,7 @@ def generateHtmlTooltip(section, parameter, markdownFile):
# Add the tooltip to the config page
with open(docsMainFolder + "/" + configPage, 'r') as configPageHandle:
configPageContent = configPageHandle.read()
configPageContent = configPageContent.replace("<td>$TOOLTIP_" + section + "_" + parameter, "<td>" + htmlTooltip")
configPageContent = configPageContent.replace("<td>$TOOLTIP_" + section + "_" + parameter, "<td>" + htmlTooltip)
with open(docsMainFolder + "/" + configPage, 'w') as configPageHandle:
configPageHandle.write(configPageContent)