21 lines
334 B
Plaintext
21 lines
334 B
Plaintext
![]() |
= 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[]
|
||
|
----
|