Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Find And Replace In Template

python
skeleton = """  $ZERO: $ZERO_set,"""

things = [
  ("checklist",),
  ("comment",),
  ("detail",),
  ("json",),
  ("json_plugin",),
  ("list",),
  ("preformatted",),
  ("standard",),
  ("table",),
  ("text_plugin",),
  ("yaml",),
]


print("ConfigSectionCategories {")

for thing in things:
  out = skeleton.replace("$ZERO", thing[0])
  print(out)

print("}")
results start