diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2021-04-16 18:27:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-23 16:39:03 +0100 |
commit | c3c6de21876aad811e08538544c8fe76d22ccd09 (patch) | |
tree | e22ee00a9c1ec588965f32050a42e05946bc9f71 /documentation/overview-manual/development-environment.rst | |
parent | 773536c333248214f8f41eff698d8bfd3c687249 (diff) | |
download | poky-c3c6de21876aad811e08538544c8fe76d22ccd09.tar.gz |
manuals: code insertion simplification over two lines
This simplifies paragraphs ending with a colon and followed
by code insertion.
Automatically substituted through the command:
sed -i -z "s/:\n\s*::/::/g" file.rst
This generates identical HTML output.
(From yocto-docs rev: 28e2192a7c12d64b68061138a9f6c796453eebb1)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/overview-manual/development-environment.rst')
-rw-r--r-- | documentation/overview-manual/development-environment.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/documentation/overview-manual/development-environment.rst b/documentation/overview-manual/development-environment.rst index a33f89e4fa..1decf01e43 100644 --- a/documentation/overview-manual/development-environment.rst +++ b/documentation/overview-manual/development-environment.rst | |||
@@ -430,8 +430,7 @@ local working area (also called a branch) that tracks a specific | |||
430 | development branch from the upstream source Git repository. in other | 430 | development branch from the upstream source Git repository. in other |
431 | words, you can define your local Git environment to work on any | 431 | words, you can define your local Git environment to work on any |
432 | development branch in the repository. To help illustrate, consider the | 432 | development branch in the repository. To help illustrate, consider the |
433 | following example Git commands: | 433 | following example Git commands:: |
434 | :: | ||
435 | 434 | ||
436 | $ cd ~ | 435 | $ cd ~ |
437 | $ git clone git://git.yoctoproject.org/poky | 436 | $ git clone git://git.yoctoproject.org/poky |
@@ -476,8 +475,7 @@ create and checkout a local working Git branch based on a tag name. When | |||
476 | you do this, you get a snapshot of the Git repository that reflects the | 475 | you do this, you get a snapshot of the Git repository that reflects the |
477 | state of the files when the change was made associated with that tag. | 476 | state of the files when the change was made associated with that tag. |
478 | The most common use is to checkout a working branch that matches a | 477 | The most common use is to checkout a working branch that matches a |
479 | specific Yocto Project release. Here is an example: | 478 | specific Yocto Project release. Here is an example:: |
480 | :: | ||
481 | 479 | ||
482 | $ cd ~ | 480 | $ cd ~ |
483 | $ git clone git://git.yoctoproject.org/poky | 481 | $ git clone git://git.yoctoproject.org/poky |