Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/chipzoller/hugo-clarity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Boothe <git@rootwork.org>2022-06-30 23:57:19 +0300
committerGitHub <noreply@github.com>2022-06-30 23:57:19 +0300
commit69751d47e52293c22100bdd297679dacb9f4e9e3 (patch)
treebee11193e68cb04224f29540dc84e9705beb70b9 /README.md
parent77f33ab9841416cfcbd0e5e85a0c14d8b601a5e4 (diff)
parent0efdd7a84ae133b71bf1daa12cc09c6dfe4c7824 (diff)
Merge pull request #324 from chipzoller/baseurl-fixes
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index f9dd595..c938961 100644
--- a/README.md
+++ b/README.md
@@ -399,9 +399,9 @@ Image captions are automatically generated. If an image has title text, the capt
Examples of captions:
-- `![Jane Doe](/images/jane-doe.png)` will display the local `jane-doe.png` image with a caption of "Jane Doe".
+- `![Jane Doe](../images/jane-doe.png)` will display the local `jane-doe.png` image with a caption of "Jane Doe".
- `![Jane Doe](https://raw.githubusercontent.com/chipzoller/hugo-clarity/master/exampleSite/static/images/jane-doe.png "This is Jane Doe")` will display the remote image `jane-doe.png` with a caption of "This is Jane Doe".
-- `![A building](/images/building.png " ")` will display the local image `building.png` with no caption.
+- `![A building](../images/building.png " ")` will display the local image `building.png` with no caption.
Examples of this can also be found in the "Markdown Syntax Guide" post in the example site content.