Bad formatting of code in module input description

goal: to format code inside the description/tooltip for inputs of a module
actual behavior:

here's the source for the bboxes input description:

array of objects with keys: l, t, w, and h (left, top, width, and height)

recommended query for minimum total data  size passed into module:
```sql
select
  round(bbox_left::numeric, 3) as l,
  round(bbox_top::numeric, 3) as t,
  round(bbox_width::numeric, 3) as w,
  round(bbox_height::numeric, 3) as h
from rekog
limit 40