Consider the following code:
#show emph: set text(weight: "bold", style: "normal")
This is an _example_.
It turns out that “example” is printed in bold letters (which is not the default, so the show-set rule works) but is still italic. Can anyone explain why that is?
Note: I know I can achieve my goal e.g. by defining
#show emph: it => {
text(weight: "bold", style: "normal", it.body)
}
but this is not the point of the question. Instead I’d just like to understand what is going on in the previous example.

