From b33174154062e33318b9b421b5aada8d46dcdc12 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sat, 21 Oct 2023 20:11:49 +0200 Subject: [PATCH] Start new sentences on a new line in markdown --- docs/using/running.md | 3 ++- docs/using/selecting.md | 3 ++- tagging/README.md | 6 ++++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/using/running.md b/docs/using/running.md index 030c54f6b7..1a22172b8e 100644 --- a/docs/using/running.md +++ b/docs/using/running.md @@ -116,7 +116,8 @@ docker rm notebook ## Using the Podman CLI -An alternative to using the Docker CLI is to use the Podman CLI. Podman is mostly compatible with Docker. +An alternative to using the Docker CLI is to use the Podman CLI. +Podman is mostly compatible with Docker. ### Podman example diff --git a/docs/using/selecting.md b/docs/using/selecting.md index b335b5af6f..f85ab4748c 100644 --- a/docs/using/selecting.md +++ b/docs/using/selecting.md @@ -249,7 +249,8 @@ Whenever a docker image is pushed to the container registry, it is tagged with: - a set of software version tags like `python-3.10.8` and `lab-3.5.3` ```{warning} -- Tags before `2022-07-05` were sometimes incorrect. Please, do not rely on them. +- Tags before `2022-07-05` were sometimes incorrect. + Please, do not rely on them. - Single-platform images have either `aarch64` or `x86_64` tag prefixes, for example, `jupyter/base-notebook:aarch64-python-3.10.5` ``` diff --git a/tagging/README.md b/tagging/README.md index bb7edccae3..11c2e758ee 100644 --- a/tagging/README.md +++ b/tagging/README.md @@ -12,10 +12,12 @@ For example, we dump all the `conda` packages, including their versions. ## Main principles -- All the images are located in a hierarchical tree. More info on [image relationships](../docs/using/selecting.md#image-relationships). +- All the images are located in a hierarchical tree. + More info on [image relationships](../docs/using/selecting.md#image-relationships). - We have `tagger` and `manifest` classes, which can be run inside docker containers to obtain tags and build manifest pieces. - These classes are inherited from the parent image to all the children images. -- Because manifests and tags might change from parent to children, `taggers` and `manifests` are reevaluated on each image. So, the values are not inherited. +- Because manifests and tags might change from parent to children, `taggers` and `manifests` are reevaluated on each image. + So, the values are not inherited. - To tag an image and create a manifest, run `make hook/base-notebook` (or another image of your choice). ## Source code description