You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In attribute declarations, values can be split across multiple lines with a line continuation character (\). Indentation on the subsequent lines is ignored.
Eg:
:description: If you have a very long line of text \
that you need to substitute regularly in a document, \
you may find it easier to split the value neatly in the header \
so it remains readable to folks looking at the AsciiDoc source.
using recursive grammar rule to parse subsequent lines when
line ends with the `\` continuation character.
fixesbytesparadise#891
Signed-off-by: Xavier Coulon <[email protected]>
using recursive grammar rule to parse subsequent lines when
line ends with the `\` continuation character.
fixes#891
Signed-off-by: Xavier Coulon <[email protected]>
In attribute declarations, values can be split across multiple lines with a line continuation character (
\
). Indentation on the subsequent lines is ignored.Eg:
See https://docs.asciidoctor.org/asciidoc/latest/attributes/wrap-values/#soft-wrap-attribute-values
The text was updated successfully, but these errors were encountered: