From 2788e5f0f3c639d137d64903bdc37af011625b60 Mon Sep 17 00:00:00 2001 From: Fabian Lupa Date: Sat, 5 Dec 2020 17:21:26 +0100 Subject: [PATCH] Fix adjust_display_commit_url markdown table (#4290) * Fix adjust_display_commit_url markdown table Fixes #4289 * Fix table spacing --- docs/ref-exits.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/ref-exits.md b/docs/ref-exits.md index 1b5d50d23..79ef89ed9 100644 --- a/docs/ref-exits.md +++ b/docs/ref-exits.md @@ -52,9 +52,10 @@ This [example implementation](https://gist.github.com/flaiker/999c8165b89131608b Can be used for any postprocessing operation for deserialized objects. Since it is a postprocessing step, only logs can be added to II_LOG and one should not terminate the process by raising exception, which may lead to inconsistencies. ### ADJUST_DISPLAY_COMMIT_URL -Can be used to set the URL to display a commit. There is a default implementation for some provider: -|  | Repo URL | Show Commit URL| -|-- | -- | -- | -|github | http(s):\/\/github.com//\.git | http(s): //github.com//\/commit/17b6411cdb59cfb4478a8e6b3de1da3241fedd41 | -|bitbucket | http(s):\/\/bitbucket.org//\.git | http(s):\/\/bitbucket.org//\/commits/17b6411cdb59cfb4478a8e6b3de1da3241fedd41 | -|gitlab | http(s):\/\/gitlab.com//\.git | http(s):\/\/gitlab.com/\/\/-/commit/17b6411cdb59cfb4478a8e6b3de1da3241fedd41 | +Can be used to set the URL to display a commit. There are default implementations for some providers: + +| Provider | Repo URL | Show Commit URL | +|-----------|----------|-----------------| +| github | http(s):\/\/github.com//\.git | http(s): //github.com//\/commit/17b6411cdb59cfb4478a8e6b3de1da3241fedd41 | +| bitbucket | http(s):\/\/bitbucket.org//\.git | http(s):\/\/bitbucket.org//\/commits/17b6411cdb59cfb4478a8e6b3de1da3241fedd41 | +| gitlab | http(s):\/\/gitlab.com//\.git | http(s):\/\/gitlab.com/\/\/-/commit/17b6411cdb59cfb4478a8e6b3de1da3241fedd41 |