tags: reaper util This generates an html [formatted action list like this](ActionList.html) with a search box that takes a case-insensitive regex and matches against descriptions. Very hacky but fine for me. (The example action list is from Reaper 7.09). ```py #!/bin/bash import re import json a = open("ActionList.txt").read().rstrip().splitlines() b = [ x.split("\t") for x in a ] j = json.dumps(b) h = """