rspec/docs/asciidoc_dos_and_donts.adoc

21 lines
334 B
Plaintext
Raw Normal View History

2023-02-28 11:34:49 +01:00
= AsciiDoc Dos & Don'ts
=== Include
When using multiple `include` statements, make sure that there is at least an empty line between them.
==== Write
----
include::how-to-fix-it/core.adoc[]
include::how-to-fix-it/symfony.adoc[]
----
==== Avoid
----
include::how-to-fix-it/core.adoc[]
include::how-to-fix-it/symfony.adoc[]
----