From 88882f1d89a3826697d4b7f87800069bd0ec6b47 Mon Sep 17 00:00:00 2001 From: Philippe Blain Date: Fri, 29 Apr 2022 08:27:53 -0400 Subject: [PATCH] basic-writing-and-formatting: add 'raw=true' also for images of same repo It seems it is sometimes necessary to use the '?raw=true' parameter, mentioned on the "In issues, pull requests and comments of another repository" line of the table, even if the image linked to is in the same repository as the issue or pull request. Add it to the example in the line "In issues, pull requests and comments of the repository" also. --- .../basic-writing-and-formatting-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md b/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md index 592601c3de..386513d526 100644 --- a/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md +++ b/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md @@ -130,7 +130,7 @@ Here are some examples for using relative links to display an image. | ------ | -------- | | In a `.md` file on the same branch | `/assets/images/electrocat.png` | | In a `.md` file on another branch | `/../main/assets/images/electrocat.png` | -| In issues, pull requests and comments of the repository | `../blob/main/assets/images/electrocat.png` | +| In issues, pull requests and comments of the repository | `../blob/main/assets/images/electrocat.png?raw=true` | | In a `.md` file in another repository | `/../../../../github/docs/blob/main/assets/images/electrocat.png` | | In issues, pull requests and comments of another repository | `../../../github/docs/blob/main/assets/images/electrocat.png?raw=true` |