Creating an intent that has various sentence structures but with a set list of lookup values

I am creating an intent for when someone uses a profanity. I have a set list of profanity words that I want to be used in the intent. Similar to how a lookup table is used to detect entities, I would like to have a list of words that replace placeholders in the sentence examples. For example, it would look like:

- intent: profanity
  examples: |
    - this is [profanity1](profanity)
    - [profanity2](profanity) this
    - you are a [profanity3](profanity)

Is this possible, or do I need to write out the sentence for each and every profanity, which would of course mean there are now 9 examples instead of 3:

- intent: profanity
  examples: |
    - this is profanity1
    - profanity1 this
    - you are a profanity1
    - this is profanity2
    - profanity2 this
    - ...

Thanks for any help on this!