Mixing in custom information in yaml files?

I would like to use custom “fields” in the Rasa yaml files (e.g. training data). One case is to comment examples, like this:
grafik

How will this affect training? How will it affect Rasa X (e.g. overriding?)

I would need to run it myself to be sure how Rasa X deals with it, but I’d imagine the training procedure shouldn’t be affected.

One thing about your example though. The yaml syntax currently reads | as “what follows next is text”.

That means that there is a difference between

- intent: greet
  examples: |
    - hello there
    - hi 
  comments: | 
    - some text

and

- intent: greet
  examples: |
    - hello there
    - hi 
  comments:  
    - some text

Also, please don’t use a screenshot for code in the future. It’s much more helpful if you post it as code in the markdown syntax instead.

Thanks for the reply. I tried adding the snippet but id did not get the indention right. Will do it with quotes next time.