How to adjust the style for the terms only in a term list?

I figured it out. The default layout of terms is “approximately” equals to

show terms: body => {
  body.children.map(it => pad(left: body.indent + body.hanging-indent, {
    box(inset: (left: -body.hanging-indent), it.term)
    body.separator
    it.description
  })).join()
}

So you can adjust the style of it.term in this show-set rule

1 Like