How to use the devider in textarea toolbar?

In the Reference it says, that it is possible to place a | divider between buttons.
However I tried several ways to do that and can’t solve it. I mean, it’s not that important, but since the option is available, I would be interested to use it.

buttons:
  - italic
  – |
  – bold
buttons:
  - italic
    |
  – bold
buttons:
  - italic
  |
  – bold
buttons:
  - italic |
  – bold
buttons:
  - italic|
  – bold
buttons:
  - italic | bold
buttons:
  - italic|bold
buttons: italic|bold

These were all the variants I came up with but are not working…

Does someone know?

Try wrapping the pipe in single qoutes. A pipe is part of the Yaml syntax, so i suspect its getting confused

buttons:
  - italic
  – '|'
  – bold
1 Like

Thank you!
Kinda obvious once I think about it.
Anyway, I created a PR to include that detail into the Docs…