In the documentation of crypto_data_encrypt/4, I would like to format text as follows:
- chacha20-poly1305
Description1
- aes-128-cbc
Description2
- aes-128-gcm
Description3
So, I use:
% * =|chacha20-poly1305|=
% Description1
%
% * =|aes-128-cbc|=
% Description2
%
% * =|aes-128-gcm|=
% Description3
As result, I unexpectedly get:
=() | chacha20()-poly1305()|=()
Description1
=() | aes()- 128-cbc()|=()
Description2
=() | aes()- 128-gcm()|=()
Description3
The issue here seems to be that verbatim text, i.e., =|...|= is not recognized as an item of the itemization if there are also additional descriptions present.
In the documentation of
crypto_data_encrypt/4, I would like to format text as follows:Description1
Description2
Description3
So, I use:
As result, I unexpectedly get:
=() | chacha20()-poly1305()|=() Description1 =() | aes()- 128-cbc()|=() Description2 =() | aes()- 128-gcm()|=() Description3The issue here seems to be that verbatim text, i.e.,
=|...|=is not recognized as an item of the itemization if there are also additional descriptions present.