Asciidoc may fail to render link attributes for external links
supposed to open in a new window correctly. This change adds
:linkattrs: to the beginning of such files to force parsing link
attributes correctly.
Bug: Issue 12068
Change-Id: If18be60de646ff78f672239dd4fa435fd4fd92ab
To make it easier to stay on track when reading documentation, I
added ",role=external,window=_blank" to all links in the
documentation directory that were not pointing at another piece of documentation.
Change-Id: I94bf254c90f8ebce067c765be0a2932b755a045a
We previous use the section title style like:
Section level 1
===============
Section level 2
---------------
Which have a problem in Asciidoctor that the number of "="s or "-"s must match
the number of characters in the header exactly, as a result it's easy to make
mistakes while changing the titles. Asciidoctor provides a better style like:
= Section level 1
== Section level 2
So we switched to this style.
Also fixed a bug in replace_macros.py, which will not cause any problem in the
old style.
Change-Id: I811dd7238735d98f662767c17086152cd69aea02
Added a documentation page that explains the
"contains banned commit ..." error in details.
Change-Id: Ie574a0cf84be5d97d11c2eaee3cabbcf759c3ce3
Signed-off-by: Edwin Kempin <edwin.kempin@gmail.com>